mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-24 16:25:00 -04:00
Fix bug auto_actualize
When auto_actualize was true and there was no feed to refresh, a message was always showed. Now we check size of array "feeds" and if size is zero, we don't perform auto_actualize action
This commit is contained in:
@@ -660,7 +660,7 @@ function init_actualize() {
|
||||
return false;
|
||||
});
|
||||
|
||||
if (auto_actualize_feeds) {
|
||||
if (auto_actualize_feeds && feed_count > 0) {
|
||||
$("#actualize").click();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user