summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/viewfeed.js b/viewfeed.js
index bc296c556..622ea6378 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -633,6 +633,9 @@ function editArticleTags(id, feed_id, cdm_enabled) {
_tag_active_post_id = id;
_tag_active_feed_id = feed_id;
_tag_active_cdm = cdm_enabled;
+
+ cache_invalidate(id);
+
try {
_tag_cdm_scroll = document.getElementById("headlinesInnerContainer").scrollTop;
} catch (e) { }
@@ -829,3 +832,16 @@ function cache_expire() {
article_cache.shift();
}
}
+
+function cache_invalidate(id) {
+ var i = 0
+
+ while (i < article_cache.length) {
+ if (article_cache[i]["id"] == id) {
+ article_cache.remove(i);
+ return true;
+ }
+ i++;
+ }
+ return false;
+}