summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-02-28 20:09:25 +0400
committerAndrew Dolgov <[email protected]>2013-02-28 20:09:25 +0400
commit8a775535959b5a3f2605063110a5ecca8cca0103 (patch)
tree06dbfd29a51a3359bd8876731d6e0a686e6d033e /js
parenta1f7a5191aef343b5eef23716f5a162178874e47 (diff)
unsubscribeFeed: call updateFeedList() when unsubscribing from labels
Diffstat (limited to 'js')
-rw-r--r--js/functions.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/functions.js b/js/functions.js
index be12d257a..72f72ddaa 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1274,6 +1274,8 @@ function unsubscribeFeed(feed_id, title) {
} else {
if (feed_id == getActiveFeedId())
setTimeout("viewfeed(-5)", 100);
+
+ if (feed_id < 0) updateFeedList();
}
} });