Skip to content
Snippets Groups Projects
Unverified Commit b9449012 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Merge pull request #6441 from syamgk/fix-parameter-mismatch

Fix issue #6406 parameter mismatch
parents c530f9af b62c9db8
No related branches found
No related tags found
No related merge requests found
Fix bug: TypeError in `register_user()` while using LDAP auth module.
...@@ -266,7 +266,7 @@ class RegistrationHandler(BaseHandler): ...@@ -266,7 +266,7 @@ class RegistrationHandler(BaseHandler):
} }
# Bind email to new account # Bind email to new account
yield self._register_email_threepid(user_id, threepid_dict, None, False) yield self._register_email_threepid(user_id, threepid_dict, None)
return user_id return user_id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment