summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-01-13 17:43:39 +0000
committerErik Johnston <erik@matrix.org>2016-01-13 17:43:39 +0000
commit2655d61d703cc6718f669dd43e814862750b7748 (patch)
tree7e359055122cfbf552c14cbbdf7ca53066f4510f /synapse/handlers
parentTemporarily disable notification branch (diff)
downloadsynapse-2655d61d703cc6718f669dd43e814862750b7748.tar.xz
Don't change signature. Return empty list
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/sync.py4
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