From 67aadbe86b7bb9d03cf24784a17238404934195d Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Tue, 3 Oct 2017 18:48:24 +0200 Subject: [PATCH] make redirect URI also work if index.html is called specifically --- js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index d8953ad..02e2947 100644 --- a/js/ui.js +++ b/js/ui.js @@ -135,7 +135,7 @@ function startLogin() { } function getRedirectURI() { - return window.location.protocol + '//' + window.location.host + window.location.pathname + "login.html"; + return window.location.protocol + '//' + window.location.host + window.location.pathname.replace("index.html", "") + "login.html"; } function doLogout() { -- 2.35.3