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

update_rss_feed: don't return as if failed on http 304

This commit is contained in:
Andrew Dolgov
2020-09-27 17:13:36 +03:00
parent d4d0e976dc
commit 74cd60d7cc

View File

@@ -453,7 +453,7 @@ class RSSUtils {
last_updated = NOW() WHERE id = ?");
$sth->execute([$error_message, $feed]);
return;
return $error_message == "";
}
Debug::log("running HOOK_FEED_FETCHED handlers...", Debug::$LOG_VERBOSE);