summary refs log tree commit diff
path: root/synapse/handlers/sync.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-02 16:12:10 +0000
committerErik Johnston <erik@matrix.org>2016-02-02 16:12:10 +0000
commit8a391e33ae21f9a62c57cca8eea47435a14a6247 (patch)
tree96557786f18ba3f815553d3e4e34354135a7128c /synapse/handlers/sync.py
parentFetch events in a separate transaction. (diff)
downloadsynapse-8a391e33ae21f9a62c57cca8eea47435a14a6247.tar.xz
s/get_room_changes_for_user/get_membership_changes_for_user/
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 8d8d10da33..dc686db541 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -479,7 +479,7 @@ class SyncHandler(BaseHandler):
         )
 
         # Get a list of membership change events that have happened.
-        rooms_changed = yield self.store.get_room_changes_for_user(
+        rooms_changed = yield self.store.get_membership_changes_for_user(
             user_id, since_token.room_key, now_token.room_key
         )