summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-02-04 11:57:31 +0300
committerAndrew Dolgov <[email protected]>2017-02-04 11:57:31 +0300
commit6358d70d5e1b0954fdc9e7f7481950ef59446036 (patch)
tree60ffc819b25011b2b3f24f2f2b6666d528751dca /js
parent5edd605ae1a9269b8b6b91b587da3d54a35424e9 (diff)
reset local counter cache when feed count changes
Diffstat (limited to 'js')
-rw-r--r--js/feedlist.js8
-rw-r--r--js/tt-rss.js2
2 files changed, 8 insertions, 2 deletions
diff --git a/js/feedlist.js b/js/feedlist.js
index 3a0b7cb12..daba29108 100644
--- a/js/feedlist.js
+++ b/js/feedlist.js
@@ -13,6 +13,10 @@ var _counters_prev = [];
return false;
}*/
+function resetCounterCache() {
+ _counters_prev = [];
+}
+
function loadMoreHeadlines() {
try {
console.log("loadMoreHeadlines");
@@ -306,10 +310,10 @@ function parse_counters(elems) {
continue;
}
- if (id == "subscribed-feeds") {
+ /*if (id == "subscribed-feeds") {
feeds_found = ctr;
continue;
- }
+ }*/
/*if (getFeedUnread(id, (kind == "cat")) != ctr ||
(kind == "cat")) {
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 0cbd589bb..36be92f4e 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -55,6 +55,8 @@ function updateFeedList() {
// __("Loading, please wait...") + "</div>";
Element.show("feedlistLoading");
+
+ resetCounterCache();
if (dijit.byId("feedTree")) {
dijit.byId("feedTree").destroyRecursive();