UI: fix updateServerConfig error handling

This commit is contained in:
kaso17 2017-08-30 11:50:11 +02:00
parent 168f04e786
commit 0143bdfe14
1 changed files with 8 additions and 8 deletions

View File

@ -1111,17 +1111,17 @@ function bindUIButtons() {
omdbkey: jackett_omdb_key omdbkey: jackett_omdb_key
}; };
api.updateServerConfig(jsonObject, function (data) { api.updateServerConfig(jsonObject, function (data) {
if (data !== undefined && data.result == "error") { doNotify("Redirecting you to complete configuration update..", "success", "glyphicon glyphicon-ok");
doNotify("Error: " + data.error, "danger", "glyphicon glyphicon-alert"); window.setTimeout(function () {
window.location.reload(true);
}, 3000);
}).fail(function (data) {
if (data.responseJSON !== undefined && data.responseJSON.result == "error") {
doNotify("Error: " + data.responseJSON.error, "danger", "glyphicon glyphicon-alert");
return; return;
} else { } else {
doNotify("Redirecting you to complete configuration update..", "success", "glyphicon glyphicon-ok"); doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
window.setTimeout(function () {
window.location.reload(true);
}, 3000);
} }
}).fail(function () {
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
}); });
}); });