From b69dbba33865a640d7ee12de32059e3792dcc9ac Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 2 Aug 2018 09:40:39 +0300 Subject: [PATCH] [WebUI] Fix "auth" request URL Fixes: #2390 --- interface/js/app/stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index 151616052..e40206266 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -171,7 +171,7 @@ define(["jquery", "d3pie", "humanize"], // Public API var ui = { statWidgets: function (rspamd, graphs, checked_server) { - rspamd.query("/auth", { + rspamd.query("auth", { success: function (neighbours_status) { var neighbours_sum = { version: neighbours_status[0].data.version, -- 2.39.5