summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js16
1 files changed, 12 insertions, 4 deletions
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);
}
}