diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-10-04 15:33:42 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2021-10-04 15:33:42 +0100 |
commit | 730b40dd5e94022657845f98a0a9577c3e8b4935 (patch) | |
tree | 1022faf7e34c87c2aae1f158573121ee3146bc0b /synapse/storage | |
parent | Consistently exclude from user_directory (#10960) (diff) | |
parent | 1.44.0rc3 (diff) | |
download | synapse-730b40dd5e94022657845f98a0a9577c3e8b4935.tar.xz |
Merge tag 'v1.44.0rc3' into develop
Synapse 1.44.0rc3 (2021-10-04) ============================== Bugfixes -------- - Fix a bug introduced in Synapse v1.40.0 where changing a user's display name or avatar in a restricted room would cause an authentication error. ([\#10933](https://github.com/matrix-org/synapse/issues/10933)) - Fix `/admin/whois/{user_id}` endpoint, which was broken in v1.44.0rc1. ([\#10968](https://github.com/matrix-org/synapse/issues/10968))
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/client_ips.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/client_ips.py b/synapse/storage/databases/main/client_ips.py index 0e1d97aaeb..c77acc7c84 100644 --- a/synapse/storage/databases/main/client_ips.py +++ b/synapse/storage/databases/main/client_ips.py @@ -591,8 +591,8 @@ class ClientIpStore(ClientIpWorkerStore): ) results.update( - ((row["access_token"], row["ip"]), (row["user_agent"], row["last_seen"])) - for row in rows + ((access_token, ip), (user_agent, last_seen)) + for access_token, ip, user_agent, last_seen in rows ) return [ { |