diff --git a/src/system/curl.php b/src/system/curl.php index 81dfdaa..3d5d2db 100644 --- a/src/system/curl.php +++ b/src/system/curl.php @@ -80,7 +80,7 @@ class Curl { if ($response) { if ($json) { - return json_decode($response, true); + return json_decode($response, true, 512, JSON_INVALID_UTF8_IGNORE); } else { return $response; }