summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-01-11 07:16:41 -0500
committerGitHub <noreply@github.com>2023-01-11 12:16:41 +0000
commit3952297f6f39906a65e70bce7becc1acd300a287 (patch)
tree950b78bb19e83337eb320ef93ab982219716c39d /synapse/api
parentUpdate changelog 2 (diff)
downloadsynapse-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.py3
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()