1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:45:55 +00:00

parse_counters: properly delete category cache when child_unread changes

This commit is contained in:
Andrew Dolgov
2012-08-24 23:23:03 +04:00
parent c39befacb2
commit 183ca8b940

View File

@@ -310,8 +310,11 @@ function parse_counters(elems, scheduled_call) {
displayNewContentPrompt(id);
}
if (getFeedUnread(id, (kind == "cat")) != ctr)
if (getFeedUnread(id, (kind == "cat")) != ctr ||
(kind == "cat" && getCatParam(id) != child_unread)) {
cache_delete("feed:" + id + ":" + (kind == "cat"));
}
setFeedUnread(id, (kind == "cat"), ctr);
@@ -430,6 +433,14 @@ function setCatParam(cat, value) {
}
}
function getCatParam(cat) {
try {
return getFeedValue(cat, true, "child_unread");
} catch (e) {
//
}
}
function selectFeed(feed, is_cat) {
try {