From: Alexander Moisseev Date: Sun, 29 Jul 2018 16:12:12 +0000 (+0300) Subject: [Minor] Fix save map on cluster messages X-Git-Tag: 1.7.9~22^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F2382%2Fhead;p=rspamd.git [Minor] Fix save map on cluster messages --- diff --git a/interface/js/app/config.js b/interface/js/app/config.js index 8fbaf4fe0..5bebca62a 100644 --- a/interface/js/app/config.js +++ b/interface/js/app/config.js @@ -32,8 +32,9 @@ define(["jquery"], $("#modalDialog").modal("hide"); } function save_map_error(rspamd, serv, jqXHR, textStatus, errorThrown) { + var serv_name = (typeof serv === "string") ? serv : serv.name; rspamd.alertMessage("alert-modal alert-error", "Save map error on " + - serv.name + ": " + errorThrown); + serv_name + ": " + errorThrown); } // @upload map from modal function saveMap(rspamd, action, id) { @@ -267,8 +268,12 @@ define(["jquery"], var id = $(form).attr("id"); var data = $("#" + id).find("textarea").val(); rspamd.query(action, { - success: save_map_success, - error: save_map_error, + success: function () { + save_map_success(rspamd); + }, + error: function (serv, jqXHR, textStatus, errorThrown) { + save_map_error(rspamd, serv, jqXHR, textStatus, errorThrown); + }, method: "POST", headers: { Map: id,