1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-11 08:05:56 +00:00

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

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;