mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-25 02:55:46 +03:00
Merge pull request #6024 from matrix-org/dbkr/fix_sso_fallback_login
Fix SSO fallback login
This commit is contained in:
commit
59975f9a63
2 changed files with 2 additions and 1 deletions
1
changelog.d/6024.bugfix
Normal file
1
changelog.d/6024.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where login error was shown incorrectly on SSO fallback login.
|
|
@ -62,7 +62,7 @@ var show_login = function() {
|
|||
$("#sso_flow").show();
|
||||
}
|
||||
|
||||
if (!matrixLogin.serverAcceptsPassword && !matrixLogin.serverAcceptsCas) {
|
||||
if (!matrixLogin.serverAcceptsPassword && !matrixLogin.serverAcceptsCas && !matrixLogin.serverAcceptsSso) {
|
||||
$("#no_login_types").show();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue