mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
Merge pull request #822 from tomyvi/patch-1
Disable SSL checks on API calls
This commit is contained in:
@@ -131,7 +131,7 @@ abstract class SupportedApps
|
||||
{
|
||||
$zipurl = config('app.appsource').'files/'.$app->sha.'.zip';
|
||||
|
||||
$client = new Client(['http_errors' => false, 'timeout' => 60, 'connect_timeout' => 15]);
|
||||
$client = new Client(['http_errors' => false, 'timeout' => 60, 'connect_timeout' => 15, 'verify' => false]);
|
||||
$res = $client->request('GET', $zipurl);
|
||||
|
||||
if (! file_exists(app_path('SupportedApps'))) {
|
||||
|
||||
Reference in New Issue
Block a user