From: Andrew Dolgov Date: Thu, 28 Feb 2013 16:09:25 +0000 (+0400) Subject: unsubscribeFeed: call updateFeedList() when unsubscribing from labels X-Git-Tag: 1.7.1~5 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8a775535959b5a3f2605063110a5ecca8cca0103;p=tt-rss.git unsubscribeFeed: call updateFeedList() when unsubscribing from labels --- diff --git a/js/functions.js b/js/functions.js index be12d257..72f72dda 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(); } } });