summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-10 16:27:56 +0300
committerAndrew Dolgov <[email protected]>2010-11-10 16:27:56 +0300
commitb39b57ac44280cb759c55e4062892340c82ff67f (patch)
tree6f977dd8488d7eea99511f369980be61c3c98945 /feedlist.js
parent5225d4209e52790af6bad454d7b6da6953551ace (diff)
localStorage caching fixes
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedlist.js b/feedlist.js
index b7d47b4a5..1411f08b1 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -614,7 +614,7 @@ function request_counters() {
var date = new Date();
var timestamp = Math.round(date.getTime() / 1000);
- if (timestamp - counters_last_request > 10) {
+ if (timestamp - counters_last_request > 5) {
console.log("scheduling request of counters...");
window.clearTimeout(counter_timeout_id);