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
1 changed files with 1 additions and 1 deletions

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);