use JSON wrapper for decoding error catching

pull/997/head
El RIDO 2022-10-23 08:21:37 +02:00
parent 0a2094f069
commit b768a2e8cb
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 9 additions and 1 deletions

View File

@ -12,7 +12,9 @@
namespace PrivateBin;
use Exception;
use PrivateBin\Configuration;
use PrivateBin\Json;
/**
* YourlsProxy
@ -74,7 +76,13 @@ class YourlsProxy
return;
}
$data = json_decode($data, true);
try {
$data = Json::decode($data);
} catch (Exception $e) {
$this->_error = $e->getMessage();
return;
}
if (
!is_null($data) &&
array_key_exists('statusCode', $data) &&