summary refs log tree commit diff
path: root/synapse/handlers/sync.py
diff options
context:
space:
mode:
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 f63c073a20..64556c5eb8 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -896,7 +896,7 @@ class SyncHandler(BaseHandler):
 
         notifs = []
         if last_unread_event_id:
-            notifs = yield self.store.get_unread_event_actions_by_room_for_user(
+            notifs = yield self.store.get_unread_event_push_actions_by_room_for_user(
                 room_id, sync_config.user.to_string(), last_unread_event_id
             )
         else: