summary refs log tree commit diff
path: root/synapse/rest/client
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-02-02 13:07:52 +0000
committerErik Johnston <erik@matrix.org>2017-02-02 13:07:52 +0000
commit85f28744e8ea9eaf828f89328360c3c03803aceb (patch)
treef18957ca943320f35ac2fd09a1b1116d96547910 /synapse/rest/client
parentMake presence.get_new_events a bit faster (diff)
downloadsynapse-github/erikj/device_list_changes_perf.tar.xz
We also use the new cache of users who share rooms with cache.
Diffstat (limited to 'synapse/rest/client')
-rw-r--r--synapse/rest/client/v2_alpha/keys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/keys.py b/synapse/rest/client/v2_alpha/keys.py

index f99b53530a..e3f3ea86b7 100644 --- a/synapse/rest/client/v2_alpha/keys.py +++ b/synapse/rest/client/v2_alpha/keys.py
@@ -193,7 +193,7 @@ class KeyChangesServlet(RestServlet): ) defer.returnValue((200, { - "changed": changed + "changed": list(changed) }))