summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 1688680fc..9c41992bd 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -105,7 +105,15 @@ function headlines_callback2(transport, active_feed_id, is_cat, feed_cur_page) {
if (headlines) {
f.innerHTML = headlines.firstChild.nodeValue;
- cache_inject("F:" + active_feed_id,
+ var cache_prefix = "";
+
+ if (is_cat) {
+ cache_prefix = "C:";
+ } else {
+ cache_prefix = "F:";
+ }
+
+ cache_inject(cache_prefix + active_feed_id,
headlines.firstChild.nodeValue, headlines_unread);
} else {