diff --git a/app/Sensor/ClientVersion.php b/app/Sensor/ClientVersion.php index 807ef1fd0f19657e9dd3ce8a582f04fb960ae407..b72a129cc960585990f8a370e7850ac357e2bfa5 100644 --- a/app/Sensor/ClientVersion.php +++ b/app/Sensor/ClientVersion.php @@ -16,7 +16,8 @@ class ClientVersion extends \App\AbstractSensor public function manifest() { - $options = ['timeout' => 5.0]; + $options = [ + 'timeout' => 5.0]; $proxy = config("app.proxy", null); if ($proxy != null) { @@ -24,12 +25,7 @@ class ClientVersion extends \App\AbstractSensor } $client = new Client($options); - - try { - $json = $client->get(self::MANIFEST)->getBody(); - } catch (\Exception $ex) { - return ""; - } + $json = $client->get(self::MANIFEST)->getBody(); return json_decode($json)[0]; }