diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2008-08-13 08:50:28 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2008-08-13 08:50:28 +0100 |
| commit | 338ce36c218220f335546da724deca5f215720d9 (patch) | |
| tree | 77f47edf39524ce742b731e2b770d09cd587b566 /tt-rss.js | |
| parent | 074bf20c7fadaa7c2b9bf133110e1025cc2655d2 (diff) | |
fix break when calling catchupFeedInGroup() in grouped vfeed mode on a feed with a single quote in a name
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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); } } |