1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py
index 69707c47ed..7dfa2eeedb 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -840,9 +840,9 @@ class SyncHandler(BaseHandler):
return False
@defer.inlineCallbacks
- def unreadnotifs_for_room_id(self, room_id, sync_config, ephemeral_by_room):
+ def unread_notifs_for_room_id(self, room_id, sync_config, ephemeral_by_room):
# Temporarily disable notifications due to performance concerns.
- return
+ defer.returnValue([])
last_unread_event_id = self.last_read_event_id_for_room_and_user(
room_id, sync_config.user.to_string(), ephemeral_by_room
|