1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 14:11:29 +00:00

hardcode minimum 30 minute rss refetch interval

This commit is contained in:
Andrew Dolgov
2005-09-09 08:58:21 +01:00
parent 8143ae1f2b
commit 8add756ac1
3 changed files with 16 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
$result = db_query($link, "SELECT feed_url,id,last_updated FROM ttrss_feeds");
while ($line = db_fetch_assoc($result)) {
if ($line["last_updated"] && time() - strtotime($line["last_updated"]) > 1800) {
if (!$line["last_updated"] || time() - strtotime($line["last_updated"]) > 1800) {
update_rss_feed($link, $line["feed_url"], $line["id"]);
}
}
@@ -157,6 +157,11 @@
// if (!$entry_content) continue;
// WTF
if (is_array($entry_content)) {
$entry_content = $entry_content["encoded"];
}
$content_hash = "SHA1:" . sha1(strip_tags($entry_content));
$entry_comments = $item["comments"];