summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();
}