mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Allow three_pid_creds as well as threePidCreds in /account/3pid
This commit is contained in:
parent
49c328a892
commit
5687a00e4e
1 changed files with 3 additions and 2 deletions
|
@ -116,9 +116,10 @@ class ThreepidRestServlet(RestServlet):
|
|||
|
||||
body = parse_json_dict_from_request(request)
|
||||
|
||||
if 'threePidCreds' not in body:
|
||||
threePidCreds = body.get('threePidCreds')
|
||||
threePidCreds = body.get('three_pid_creds', threePidCreds)
|
||||
if threePidCreds is None:
|
||||
raise SynapseError(400, "Missing param", Codes.MISSING_PARAM)
|
||||
threePidCreds = body['threePidCreds']
|
||||
|
||||
requester = yield self.auth.get_user_by_req(request)
|
||||
user_id = requester.user.to_string()
|
||||
|
|
Loading…
Reference in a new issue