Import statements and update configuration.

This commit is contained in:
James Cole
2025-05-27 16:57:36 +02:00
parent 7c04c4c2bc
commit c074fec0a7
165 changed files with 530 additions and 335 deletions

View File

@@ -29,6 +29,7 @@ use FireflyIII\Events\NewVersionAvailable;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Support\Facades\Log;
use JsonException;
/**
* Class UpdateRequest
@@ -100,7 +101,7 @@ class UpdateRequest implements UpdateRequestInterface
try {
$json = \Safe\json_decode($body, true, 512, JSON_THROW_ON_ERROR);
} catch (\JsonException) {
} catch (JsonException) {
Log::error('Body is not valid JSON');
Log::error($body);
$return['message'] = 'Invalid JSON :(';