Fix #2063 incorrect path to cacert.pem

This commit is contained in:
Kijin Sung 2023-01-12 00:18:21 +09:00
parent 6ce32b612f
commit b8351bf3c8
2 changed files with 3 additions and 3 deletions

View file

@ -287,7 +287,7 @@ class FileHandler
$request_headers = array();
$request_cookies = array();
$request_options = array(
'verify' => \RX_BASEDIR . 'vendor/composer/ca-bundle/res/cacert.pem',
'verify' => \RX_BASEDIR . 'common/vendor/composer/ca-bundle/res/cacert.pem',
'timeout' => $timeout,
);