summaryrefslogtreecommitdiff
path: root/js/CommonDialogs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-07-07 07:38:21 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-07-07 07:38:21 +0300
commitda4b886f085fdc77c5e6d4c2543578f7b1c2041a (patch)
tree87c3df624b1f3e71500b6109645d491faf310d6e /js/CommonDialogs.js
parent46e05583a991f2d3355cbd062d9932ccee1ea25a (diff)
parent0cd788220d9e261d5bb540dab05cf58b55d94109 (diff)
Merge branch 'feature/feedparser-tweaks' into 'master'
Disallow subscribing if feed content is invalid See merge request tt-rss/tt-rss!163
Diffstat (limited to 'js/CommonDialogs.js')
-rw-r--r--js/CommonDialogs.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/CommonDialogs.js b/js/CommonDialogs.js
index 1215d567d..781b0dcc5 100644
--- a/js/CommonDialogs.js
+++ b/js/CommonDialogs.js
@@ -195,6 +195,9 @@ const CommonDialogs = {
case 5:
dialog.show_error(__("Couldn't download the specified URL."), App.escapeHtml(rc['message']));
break;
+ case 6:
+ dialog.show_error(__("Invalid content."), App.escapeHtml(rc['message']));
+ break;
case 7:
dialog.show_error(__("Error while creating feed database entry."));
break;