mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 15:25:59 +00:00
request counters less times during startup, delay initial request in feedlist_init() a bit
This commit is contained in:
@@ -198,9 +198,7 @@ function feedlist_init() {
|
||||
|
||||
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
||||
|
||||
request_counters(true);
|
||||
timeout();
|
||||
|
||||
setTimeout(timeout, 250);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@ function viewCurrentFeed(method) {
|
||||
|
||||
function timeout() {
|
||||
if (getInitParam("bw_limit") != "1") {
|
||||
request_counters();
|
||||
request_counters(true);
|
||||
setTimeout(timeout, 60*1000);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -211,7 +211,7 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
|
||||
if (counters)
|
||||
parse_counters(counters);
|
||||
else
|
||||
request_counters(true);
|
||||
request_counters();
|
||||
|
||||
} else {
|
||||
console.error("Invalid object received: " + transport.responseText);
|
||||
|
||||
Reference in New Issue
Block a user