diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-08-06 17:15:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-06 17:15:35 +0100 |
commit | 2ffd6783c7af12e3c29e1a44dee4a9deeb83890b (patch) | |
tree | a757175121ecd385dd174b84b30016cf74c81350 /synapse/handlers/sync.py | |
parent | Convert some util functions to async (#8035) (diff) | |
download | synapse-2ffd6783c7af12e3c29e1a44dee4a9deeb83890b.tar.xz |
Revert #7736 (#8039)
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 5a19bac929..c42dac18f5 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -103,7 +103,6 @@ class JoinedSyncResult: account_data = attr.ib(type=List[JsonDict]) unread_notifications = attr.ib(type=JsonDict) summary = attr.ib(type=Optional[JsonDict]) - unread_count = attr.ib(type=int) def __nonzero__(self) -> bool: """Make the result appear empty if there are no updates. This is used @@ -1887,10 +1886,6 @@ class SyncHandler(object): if room_builder.rtype == "joined": unread_notifications = {} # type: Dict[str, str] - - unread_count = await self.store.get_unread_message_count_for_user( - room_id, sync_config.user.to_string(), - ) room_sync = JoinedSyncResult( room_id=room_id, timeline=batch, @@ -1899,7 +1894,6 @@ class SyncHandler(object): account_data=account_data_events, unread_notifications=unread_notifications, summary=summary, - unread_count=unread_count, ) if room_sync or always_include: |