diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2022-11-21 16:46:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 16:46:14 +0100 |
commit | 1526ff389f02d14d0df729bd6ea35836e758c449 (patch) | |
tree | 4abae59d5954a57bdcc9c0e4ef850f9a52b1b6bc /synapse/federation | |
parent | Fix broken admin API request recommendation link (#14499) (diff) | |
download | synapse-1526ff389f02d14d0df729bd6ea35836e758c449.tar.xz |
Faster joins: filter out non local events when a room doesn't have its full state (#14404)
Signed-off-by: Mathieu Velten <mathieuv@matrix.org>
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/sender/per_destination_queue.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/federation/sender/per_destination_queue.py b/synapse/federation/sender/per_destination_queue.py index 084c45a95c..3ae5e8634c 100644 --- a/synapse/federation/sender/per_destination_queue.py +++ b/synapse/federation/sender/per_destination_queue.py @@ -505,6 +505,7 @@ class PerDestinationQueue: new_pdus = await filter_events_for_server( self._storage_controllers, self._destination, + self._server_name, new_pdus, redact=False, ) |