From 72ef137dbeba53affba9cdee8c8a6671be64bd38 Mon Sep 17 00:00:00 2001 From: yuri Date: Mon, 1 Jul 2019 12:45:50 +0300 Subject: [PATCH] fix app js logout request url --- client/src/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/app.js b/client/src/app.js index 2da1533f74..1cdd9154f6 100644 --- a/client/src/app.js +++ b/client/src/app.js @@ -526,7 +526,8 @@ define( this.unsetCookieAuth(); xhr = new XMLHttpRequest; - xhr.open('GET', this.url + '/'); + + xhr.open('GET', this.basePath + this.url + '/'); xhr.setRequestHeader('Authorization', 'Basic ' + Base64.encode('**logout:logout')); xhr.send(''); xhr.abort();