Skip to content
Snippets Groups Projects
Unverified Commit 59975f9a authored by David Baker's avatar David Baker Committed by GitHub
Browse files

Merge pull request #6024 from matrix-org/dbkr/fix_sso_fallback_login

Fix SSO fallback login
parents dd2e5b00 6db22e47
No related branches found
No related tags found
No related merge requests found
Fix bug where login error was shown incorrectly on SSO fallback login.
...@@ -62,7 +62,7 @@ var show_login = function() { ...@@ -62,7 +62,7 @@ var show_login = function() {
$("#sso_flow").show(); $("#sso_flow").show();
} }
if (!matrixLogin.serverAcceptsPassword && !matrixLogin.serverAcceptsCas) { if (!matrixLogin.serverAcceptsPassword && !matrixLogin.serverAcceptsCas && !matrixLogin.serverAcceptsSso) {
$("#no_login_types").show(); $("#no_login_types").show();
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment