Replaced ConnectException with ConnectionException

This exception is thrown and handled when Mojang servers are down.
This commit is contained in:
Miguel Nogueira 2021-10-12 22:41:24 +01:00
parent a3d0730808
commit 8d1e39c43c
Signed by: miguel456
GPG Key ID: 2CF61B825316C6A0
1 changed files with 2 additions and 2 deletions

View File

@ -2,12 +2,12 @@
namespace App\Providers;
use GuzzleHttp\Exception\ConnectException;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\View;
use Illuminate\Http\Client\ConnectionException;
class MojangStatusProvider extends ServiceProvider
{
@ -38,7 +38,7 @@ class MojangStatusProvider extends ServiceProvider
$mcstatus = Http::get(config('general.urls.mojang.statuscheck'));
Cache::put('mojang_status', base64_encode($mcstatus->body()), now()->addDays(3));
}
catch(ConnectException $connectException)
catch(ConnectionException $connectException)
{
Log::critical('Could not connect to Mojang servers: Cannot check/refresh status', [
'message' => $connectException->getMessage()