forked from MirrorHub/synapse
Merge pull request #6441 from syamgk/fix-parameter-mismatch
Fix issue #6406 parameter mismatch
This commit is contained in:
commit
b9449012db
2 changed files with 2 additions and 1 deletions
1
changelog.d/6406.bugfix
Normal file
1
changelog.d/6406.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug: TypeError in `register_user()` while using LDAP auth module.
|
|
@ -266,7 +266,7 @@ class RegistrationHandler(BaseHandler):
|
|||
}
|
||||
|
||||
# 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue