1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

update_rss_feed: bailout if cache is considered valid, but older than last_updated

This commit is contained in:
Andrew Dolgov 2013-03-30 15:42:27 +04:00
parent 31623bfa99
commit 17e74b21cf

View File

@ -251,11 +251,18 @@
_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) {
$rss_hash = sha1($rss_data);
@$rss = unserialize($rss_data);
if ($rss_data) {
$rss_hash = sha1($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;
}
}