summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-12 09:04:27 +0100
committerAndrew Dolgov <[email protected]>2006-02-12 09:04:27 +0100
commit78ea1de08ce641e1125063e1a13a230a075e424f (patch)
tree1b940d1e4780dc7952da12c4ef8e46db46569773 /tt-rss.js
parent1011b66a024442bb4a78c1a31e26419dd60dd051 (diff)
skip counters output when number of unread articles at backend equals frontend
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 4b1b29b14..989393b03 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -191,6 +191,7 @@ function scheduleFeedUpdate(force) {
}
query_str = query_str + "&omode=" + omode;
+ query_str = query_str + "&uctr=" + global_unread;
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);