summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-09-28 13:49:11 +0100
committerAndrew Dolgov <[email protected]>2006-09-28 13:49:11 +0100
commit5b064721380789d41d9063ce4da1e9f453db125a (patch)
tree789dbf771c3bb7e280718f059ddb84b54d408a4c /functions.js
parent33b8cab44f908c5f632ea7270e23d1d901eb744b (diff)
fix reloading of current feed if unread counter changed on scheduled refetch
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index 876e03ba6..d5294e0b8 100644
--- a/functions.js
+++ b/functions.js
@@ -541,8 +541,10 @@ function parse_counters(reply, scheduled_call) {
if (feedctr && feedu && feedr) {
if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
- var hf = title_obj.parent.frames["headlines-frame"];
- hf.location.reload(true);
+// var hf = title_obj.parent.frames["headlines-frame"];
+// hf.location.reload(true);
+ viewCurrentFeed();
+
}
feedu.innerHTML = ctr;