Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix auth handler #2678
Browse files Browse the repository at this point in the history
  • Loading branch information
jkolo authored and richvdh committed Nov 17, 2017
1 parent 5d0cbf7 commit eded708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/handlers/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def validate_login(self, username, login_submission):
qualified_user_id, password,
)
if is_valid:
defer.returnValue(qualified_user_id)
defer.returnValue((qualified_user_id, None))

if (not hasattr(provider, "get_supported_login_types")
or not hasattr(provider, "check_auth")):
Expand Down

0 comments on commit eded708

Please sign in to comment.