For the record, Graham sent the log to me privately. I'm not sure if that was
intentional or not.
If it wasn't, please make sure to preserve the Cc to [email protected] in
the future to also send the message to the bug tracker.
Can you either apply the attached patch or build from upstream and try again?
(And send the log) It won't fix anything but it'll print the HTTP error code to
the log file, should help understand what's going on.
- Nikos
--- a/rss/parser.cpp
+++ b/rss/parser.cpp
@@ -142,7 +142,7 @@
LOG(LOG_DEBUG, "rsspp::parser::parse_url: ret = %d", ret);
long status;
- curl_easy_getinfo(easyhandle, CURLINFO_HTTP_CONNECTCODE, &status);
+ curl_easy_getinfo(easyhandle, CURLINFO_HTTP_RESPONSE, &status);
if (status >= 400) {
LOG(LOG_USERERROR, _("Error: trying to download feed `%s' returned HTTP status code %ld."), url.c_str(), status);