prefs: properly report failures when loading plugin list

This commit is contained in:
Andrew Dolgov 2021-11-14 16:13:06 +03:00
parent cf93371607
commit 98af46addd
1 changed files with 7 additions and 0 deletions

View File

@ -363,8 +363,15 @@ const Helpers = {
xhr.json("backend.php", {op: "pref-prefs", method: "getPluginsList"}, (reply) => {
this._list_of_plugins = reply;
this.render_contents();
}, (e) => {
this.render_error(e);
});
},
render_error: function(e) {
const container = document.querySelector(".prefs-plugin-list");
container.innerHTML = `<li class='text-error'>${__("Error while loading plugins list: %s.").replace("%s", e)}</li>`;
},
render_contents: function() {
const container = document.querySelector(".prefs-plugin-list");