]> git.wh0rd.org - tt-rss.git/commitdiff
catchupFeed: use supplied feed id to display title, not active one (closes #425)
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 22 Feb 2012 08:33:08 +0000 (12:33 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 22 Feb 2012 08:33:08 +0000 (12:33 +0400)
js/feedlist.js

index 75e97e884a6c402ad8e86f130aeae3900985c5e8..271d2059e03b377d7b3ff0e4d3dd28b433dc1184 100644 (file)
@@ -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);