Fix SSO fallback login

Well, it worked, but forgot to remove the thing saying login was
unavailable.
pull/6024/head
David Baker 2019-09-12 11:42:47 +01:00
parent dd2e5b0038
commit 642fad8bd4
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
};