mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 16:04:50 -04:00
Fix auth handler #2678
This commit is contained in:
parent
ba05f28ae7
commit
624a8bbd67
1 changed files with 1 additions and 1 deletions
|
@ -551,7 +551,7 @@ class AuthHandler(BaseHandler):
|
||||||
qualified_user_id, password,
|
qualified_user_id, password,
|
||||||
)
|
)
|
||||||
if is_valid:
|
if is_valid:
|
||||||
defer.returnValue(qualified_user_id)
|
defer.returnValue((qualified_user_id, None))
|
||||||
|
|
||||||
if (not hasattr(provider, "get_supported_login_types")
|
if (not hasattr(provider, "get_supported_login_types")
|
||||||
or not hasattr(provider, "check_auth")):
|
or not hasattr(provider, "check_auth")):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue