From: Andrew Dolgov Date: Wed, 22 Feb 2012 08:33:08 +0000 (+0400) Subject: catchupFeed: use supplied feed id to display title, not active one (closes #425) X-Git-Tag: 1.5.11~41 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=9dd22f1ec140039462ecd4af0b5f71307c2f121d;p=tt-rss.git catchupFeed: use supplied feed id to display title, not active one (closes #425) --- diff --git a/js/feedlist.js b/js/feedlist.js index 75e97e88..271d2059 100644 --- a/js/feedlist.js +++ b/js/feedlist.js @@ -479,7 +479,7 @@ function getNextUnreadFeed(feed, is_cat) { function catchupFeed(feed, is_cat) { try { var str = __("Mark all articles in %s as read?"); - var fn = getFeedName(getActiveFeedId(), activeFeedIsCat()); + var fn = getFeedName(feed, is_cat); str = str.replace("%s", fn);