Fix SSO fallback login

Well, it worked, but forgot to remove the thing saying login was
unavailable.
pull/6034/head
David Baker 2019-09-12 11:42:47 +01:00 committed by Erik Johnston
parent f014ea9b5c
commit 34b826bef8
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();
}
};