summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 771114d5b..597dd2fa4 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -571,7 +571,7 @@ function catchupCurrentFeed() {
str = "Mark all articles in this category as read?";
} */
- if (confirm(str)) {
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
return viewCurrentFeed('MarkAllRead')
}
}