1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 06:55:56 +00:00

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

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");