diff options
author | Erik Johnston <erik@matrix.org> | 2017-06-27 15:53:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-06-27 15:53:45 +0100 |
commit | 8c23221666f1a09fdc97c2b526cb100cdbd32f60 (patch) | |
tree | 89cb4b139527f59388026987204e66b878bab931 /synapse/api | |
parent | Make workers report to master for user ip updates (diff) | |
download | synapse-8c23221666f1a09fdc97c2b526cb100cdbd32f60.tar.xz |
Fix up
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 10f4972369..d23bcecbad 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -200,7 +200,7 @@ class Auth(object): )[0] if user and access_token and ip_addr: self.store.insert_client_ip( - user=user, + user_id=user.to_string(), access_token=access_token, ip=ip_addr, user_agent=user_agent, |