From 9bc9c48e064c34bea2a2cb14561f214ea9ba3456 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Wed, 30 Mar 2022 13:14:35 +0100 Subject: [PATCH] Localhost doesn't like the certificate so ignore the warning --- app/SupportedApps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/SupportedApps.php b/app/SupportedApps.php index 7b3f1301..f728dd66 100644 --- a/app/SupportedApps.php +++ b/app/SupportedApps.php @@ -113,7 +113,7 @@ abstract class SupportedApps { // $list_url = 'https://apps.heimdall.site/list'; $list_url = config('app.appsource').'list.json'; - $client = new Client(['http_errors' => false, 'timeout' => 15, 'connect_timeout' => 15]); + $client = new Client(['http_errors' => false, 'verify' => false, 'timeout' => 15, 'connect_timeout' => 15]); return $client->request('GET', $list_url); }