reset local counter cache when feed count changes
This commit is contained in:
parent
5edd605ae1
commit
6358d70d5e
2 changed files with 8 additions and 2 deletions
|
@ -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")) {
|
||||
|
|
|
@ -55,6 +55,8 @@ function updateFeedList() {
|
|||
// __("Loading, please wait...") + "</div>";
|
||||
|
||||
Element.show("feedlistLoading");
|
||||
|
||||
resetCounterCache();
|
||||
|
||||
if (dijit.byId("feedTree")) {
|
||||
dijit.byId("feedTree").destroyRecursive();
|
||||
|
|
Loading…
Reference in a new issue