mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-18 15:41:30 +00:00
update_rss_feed: bailout if cache is considered valid, but older than last_updated
This commit is contained in:
@@ -251,11 +251,18 @@
|
|||||||
_debug("update_rss_feed: using local cache.");
|
_debug("update_rss_feed: using local cache.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@$rss_data = file_get_contents($cache_filename);
|
if ($cache_timestamp > $last_updated_timestamp) {
|
||||||
|
@$rss_data = file_get_contents($cache_filename);
|
||||||
|
|
||||||
if ($rss_data) {
|
if ($rss_data) {
|
||||||
$rss_hash = sha1($rss_data);
|
$rss_hash = sha1($rss_data);
|
||||||
@$rss = unserialize($rss_data);
|
@$rss = unserialize($rss_data);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ($debug_enabled) {
|
||||||
|
_debug("update_rss_feed: local cache valid and older than last_updated, nothing to do.");
|
||||||
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user