Clean up displaying subscription error info, log more detailed info to the event log.

This commit is contained in:
wn_
2025-06-19 20:37:49 +00:00
parent 692c7a8949
commit 09c11df764
2 changed files with 16 additions and 9 deletions

View File

@@ -118,10 +118,10 @@ const CommonDialogs = {
</footer>
</form>
`,
show_error: function (msg) {
show_error: function (msg, additional_info) {
const elem = App.byId("fadd_error_message");
elem.innerHTML = msg;
elem.innerHTML = `${msg}${additional_info ? `<br><br><h4>${__('Additional information')}</h4>${additional_info}` : ''}`;
Element.show(elem);
},
@@ -168,9 +168,7 @@ const CommonDialogs = {
dialog.show_error(__("Specified URL seems to be invalid."));
break;
case 3:
dialog.show_error(`<span title="${App.escapeHtml(rc['message'])}" style="text-decoration: underline dotted">
${__("Specified URL doesn't seem to contain any feeds.")}
</span>`);
dialog.show_error(__("Specified URL doesn't seem to contain any feeds."), App.escapeHtml(rc['message']));
break;
case 4:
{
@@ -195,7 +193,7 @@ const CommonDialogs = {
}
break;
case 5:
dialog.show_error(__("Couldn't download the specified URL: %s").replace("%s", App.escapeHtml(rc['message'])));
dialog.show_error(__("Couldn't download the specified URL."), App.escapeHtml(rc['message']));
break;
case 7:
dialog.show_error(__("Error while creating feed database entry."));