From 338ce36c218220f335546da724deca5f215720d9 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 13 Aug 2008 08:50:28 +0100 Subject: fix break when calling catchupFeedInGroup() in grouped vfeed mode on a feed with a single quote in a name --- tt-rss.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 870c64028..77c4730ac 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -718,12 +718,20 @@ function catchupCurrentFeed() { } } -function catchupFeedInGroup(id, title) { +function catchupFeedInGroup(id) { - var str = __("Mark all articles in %s as read?").replace("%s", title); + try { - if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) { - return viewCurrentFeed('MarkAllReadGR:' + id) + var title = getFeedName(id); + + var str = __("Mark all articles in %s as read?").replace("%s", title); + + if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) { + return viewCurrentFeed('MarkAllReadGR:' + id) + } + + } catch (e) { + exception_error("catchupFeedInGroup", e); } } -- cgit v1.2.3