mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:45:56 +00:00
more update_daemon work
This commit is contained in:
@@ -703,6 +703,8 @@
|
||||
|
||||
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
||||
|
||||
if ($subop == "forceUpdateAllFeeds" && ENABLE_FEED_CATS
|
||||
|
||||
update_all_feeds($link, $subop == "forceUpdateAllFeeds");
|
||||
|
||||
$omode = $_GET["omode"];
|
||||
|
||||
@@ -48,8 +48,11 @@
|
||||
$upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id);
|
||||
}
|
||||
|
||||
if ($fetch || (!$line["last_updated"] ||
|
||||
time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
|
||||
# printf("%d ? %d\n", time() - strtotime($line["last_updated"]) > $upd_intl*60,
|
||||
# $upd_intl*60);
|
||||
|
||||
if (!$line["last_updated"] ||
|
||||
time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
|
||||
|
||||
print "Updating...\n";
|
||||
|
||||
@@ -58,7 +61,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
sleep(SLEEP_INTERVAL);
|
||||
// sleep(SLEEP_INTERVAL);
|
||||
|
||||
db_close($link);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user