fetch: return HTTP code when no curl_error() is available

This commit is contained in:
Andrew Dolgov 2021-12-23 17:32:44 +03:00
parent 6971ca08b2
commit 1818fc11a5
1 changed files with 2 additions and 0 deletions

View File

@ -419,6 +419,8 @@ class UrlHelper {
if (curl_errno($ch) != 0) {
self::$fetch_last_error .= "; " . curl_errno($ch) . " " . curl_error($ch);
} else {
self::$fetch_last_error = "HTTP Code: $http_code ";
}
self::$fetch_last_error_content = $contents;