summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-07 08:33:33 +0100
committerAndrew Dolgov <[email protected]>2005-09-07 08:33:33 +0100
commit310da49d2fe15daf318a10bb7e66abe00c78558a (patch)
tree78a21dac7470554d36545d802c55c6b4f165bdbc /tt-rss.js
parente828e31e83e8d487ad02fd9831690b8d113218fe (diff)
fix bug in refetch_callback
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/tt-rss.js b/tt-rss.js
index d8e9dc6a8..948a0d8d2 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -62,12 +62,16 @@ function feedlist_callback() {
function refetch_callback() {
if (xmlhttp_rpc.readyState == 4) {
- notify("All feeds updated.");
- active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
-
+ var actfeedid = frames["feeds-frame"].document.getElementById("ACTFEEDID");
+
+ if (actfeedid) {
+ active_feed_id = actfeedid.innerHTML;
+ }
+
document.title = "Tiny Tiny RSS";
-
+ notify("All feeds updated.");
+
updateFeedList();
}