diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-01-11 07:16:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 12:16:41 +0000 |
commit | 3952297f6f39906a65e70bce7becc1acd300a287 (patch) | |
tree | 950b78bb19e83337eb320ef93ab982219716c39d /synapse/handlers/sync.py | |
parent | Update changelog 2 (diff) | |
download | synapse-3952297f6f39906a65e70bce7becc1acd300a287.tar.xz |
Calculate rooms changed for device lists to work. (#14810)
Back-out some changes from 7e582a25f8f350df29d7d83ca902bdb522d1bbaf (#14786) which skipped necessary logic to calculate device lists properly.
Diffstat (limited to '')
-rw-r--r-- | synapse/handlers/sync.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 6942e06c77..20ee2f203a 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -1793,10 +1793,6 @@ class SyncHandler: - newly_left_users """ - # If the request doesn't care about rooms then nothing to do! - if sync_result_builder.sync_config.filter_collection.blocks_all_rooms(): - return set(), set(), set(), set() - since_token = sync_result_builder.since_token # 1. Start by fetching all ephemeral events in rooms we've joined (if required). |