Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
[BZ 1097106] - Login page is shown for a while even when you are alre…
Browse files Browse the repository at this point in the history
…ady logged in - Redirecting from / to /coregui not to /coregui/login, because if user is logged in she sees the "blue-screen-of-login™"
  • Loading branch information
jkremser committed May 15, 2014
1 parent 2402f43 commit 5a3382f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ function checkIfRunning(attemptNum) {
if (response && response.status === 200) {
var json = JSON.parse(response.responseText);
if (json.serverInitialized) {
location.href = "/coregui/login";
location.href = "/coregui";
} else showError(json.startupError);
}
var elProgress = document.getElementById("progress");
Expand Down

0 comments on commit 5a3382f

Please sign in to comment.