summary refs log tree commit diff
path: root/synapse/handlers/sync.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-06-26 19:09:10 +0100
committerErik Johnston <erik@matrix.org>2019-06-26 19:39:19 +0100
commit806a06daf2b30691c2c69e32d1ff2e104436bbc4 (patch)
tree0e6134f1f91c01514e9654a9c5882c893ef1d94c /synapse/handlers/sync.py
parentNewsfile (diff)
downloadsynapse-806a06daf2b30691c2c69e32d1ff2e104436bbc4.tar.xz
Rename get_users_whose_devices_changed
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r--synapse/handlers/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py
index 8249e75ecd..f70ebfdee7 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -1080,7 +1080,7 @@ class SyncHandler(object):
             # weren't in the previous sync *or* they left and rejoined.
             changed = users_who_share_room & set(newly_joined_or_invited_users)
 
-            changed_users = yield self.store.get_user_whose_devices_changed(
+            changed_users = yield self.store.get_users_whose_devices_changed(
                 since_token.device_list_key, users_who_share_room
             )