We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8482cb5 commit 91512f9Copy full SHA for 91512f9
qiniu/http.php
@@ -182,7 +182,7 @@ function Qiniu_Client_ret($resp) // => ($data, $error)
182
if ($resp->ContentLength !== 0) {
183
$data = json_decode($resp->Body, true);
184
if ($data === null) {
185
- $err_msg = function_exists('json_last_error_msg') ? json_last_error_msg() : "error with content:" . $resp->Body;
+ $err_msg = function_exists('json_last_error_msg') ? json_last_error_msg() : "error with content:" . $resp->Body;
186
$err = new Qiniu_Error(0, $err_msg);
187
return array(null, $err);
188
}
0 commit comments