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/api | |
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 'synapse/api')
-rw-r--r-- | synapse/api/filtering.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/api/filtering.py b/synapse/api/filtering.py index 2b5af264b4..4cf8f0cc8e 100644 --- a/synapse/api/filtering.py +++ b/synapse/api/filtering.py @@ -283,9 +283,6 @@ class FilterCollection: await self._room_filter.filter(events) ) - def blocks_all_rooms(self) -> bool: - return self._room_filter.filters_all_rooms() - def blocks_all_presence(self) -> bool: return ( self._presence_filter.filters_all_types() |