update_rss_feed: don't return as if failed on http 304
This commit is contained in:
parent
d4d0e976dc
commit
74cd60d7cc
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue