1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:55:56 +00:00

force-request counters on load once if bw_limit option is enabled (because there's no timeout())

This commit is contained in:
Andrew Dolgov
2017-08-12 07:51:37 +03:00
parent ab8daa0389
commit 03c56b041f

View File

@@ -198,7 +198,12 @@ function feedlist_init() {
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
setTimeout(timeout, 250);
// bw_limit disables timeout() so we request initial counters separately
if (getInitParam("bw_limit") == "1") {
request_counters(true);
} else {
setTimeout(timeout, 250);
}
}