diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-04-09 13:28:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 13:28:13 -0400 |
commit | b85d7652ff084fee997e0bb44ecd46c2789abbdd (patch) | |
tree | 52f493a687c4a5b8a580c8bea4a8c66fda4723b1 /synapse/handlers/saml_handler.py | |
parent | Unblacklist /upgrade creates a new room (#7228) (diff) | |
download | synapse-b85d7652ff084fee997e0bb44ecd46c2789abbdd.tar.xz |
Do not allow a deactivated user to login via SSO. (#7240)
Diffstat (limited to 'synapse/handlers/saml_handler.py')
-rw-r--r-- | synapse/handlers/saml_handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/saml_handler.py b/synapse/handlers/saml_handler.py index 4741c82f61..7c9454b504 100644 --- a/synapse/handlers/saml_handler.py +++ b/synapse/handlers/saml_handler.py @@ -154,7 +154,7 @@ class SamlHandler: ) else: - self._auth_handler.complete_sso_login(user_id, request, relay_state) + await self._auth_handler.complete_sso_login(user_id, request, relay_state) async def _map_saml_response_to_user( self, resp_bytes: str, client_redirect_url: str |