diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-07-04 13:24:28 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-07-04 13:24:28 +0300 |
| commit | 9b38a5757086e856f8086995874cf961e38328a7 (patch) | |
| tree | 7bdee6132aeb652fcdca074ebd76cdc31330c9df /update.php | |
| parent | 0034cd69f8225c37769a093339e5c589dc9f4335 (diff) | |
| parent | b0dc82dc7e50e39f589cc0e417385532bebb9821 (diff) | |
Merge branch 'housekeeping' into 'master'
Housekeeping
See merge request tt-rss/tt-rss!160
Diffstat (limited to 'update.php')
| -rwxr-xr-x | update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update.php b/update.php index 9751aead1..093b5ae82 100755 --- a/update.php +++ b/update.php @@ -202,7 +202,7 @@ if (isset($options["feeds"])) { RSSUtils::update_daemon_common(Config::get(Config::DAEMON_FEED_LIMIT), $options); - if (!isset($options["pidlock"]) || $options["task"] == "0") + if (!isset($options["task"]) || $options["task"] == "0") RSSUtils::housekeeping_common(); PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, $options); @@ -249,7 +249,7 @@ RSSUtils::update_daemon_common(Config::get(Config::DAEMON_FEED_LIMIT), $options); - if (!isset($options["pidlock"]) || $options["task"] == "0") + if (!isset($options["task"]) || $options["task"] == "0") RSSUtils::housekeeping_common(); PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, $options); |