diff options
| author | wn_ <invalid@email.com> | 2025-06-22 16:31:50 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2025-07-06 02:33:18 +0000 |
| commit | 0cd788220d9e261d5bb540dab05cf58b55d94109 (patch) | |
| tree | 87c3df624b1f3e71500b6109645d491faf310d6e /js | |
| parent | 46e05583a991f2d3355cbd062d9932ccee1ea25a (diff) | |
Separate feed type detection from init, don't subscribe on failures.
Also some FeedParser tweaks.
Diffstat (limited to 'js')
| -rw-r--r-- | js/CommonDialogs.js | 3 |
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; |