daemon: schedule never updated feeds for update
This commit is contained in:
parent
7a22dc2ad5
commit
da4caf5d86
1 changed files with 2 additions and 2 deletions
|
@ -5244,7 +5244,7 @@
|
||||||
) OR (
|
) OR (
|
||||||
ttrss_feeds.update_interval > 0
|
ttrss_feeds.update_interval > 0
|
||||||
AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
|
AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
|
||||||
))";
|
) OR ttrss_feeds.last_updated IS NULL)";
|
||||||
} else {
|
} else {
|
||||||
$update_limit_qpart = "AND ((
|
$update_limit_qpart = "AND ((
|
||||||
ttrss_feeds.update_interval = 0
|
ttrss_feeds.update_interval = 0
|
||||||
|
@ -5252,7 +5252,7 @@
|
||||||
) OR (
|
) OR (
|
||||||
ttrss_feeds.update_interval > 0
|
ttrss_feeds.update_interval > 0
|
||||||
AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
|
AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
|
||||||
))";
|
) OR ttrss_feeds.last_updated IS NULL)";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Test if feed is currently being updated by another process.
|
// Test if feed is currently being updated by another process.
|
||||||
|
|
Loading…
Reference in a new issue