diff options
author | Šimon Brandner <simon.bra.ag@gmail.com> | 2022-05-16 17:06:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 15:06:23 +0000 |
commit | 3ce15cc7be02da139e0b274418b2c137d737035a (patch) | |
tree | 8e56ecde016918bf9e2e1b02d9c238212f5e242a /synapse/handlers/initial_sync.py | |
parent | Merge tag 'v1.59.0rc2' into develop (diff) | |
download | synapse-3ce15cc7be02da139e0b274418b2c137d737035a.tar.xz |
Avoid unnecessary copies when filtering private read receipts. (#12711)
A minor optimization to avoid unnecessary copying/building identical dictionaries when filtering private read receipts. Also clarifies comments and cleans-up some tests.
Diffstat (limited to 'synapse/handlers/initial_sync.py')
-rw-r--r-- | synapse/handlers/initial_sync.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/initial_sync.py b/synapse/handlers/initial_sync.py index 7b94770f97..de09aed3a3 100644 --- a/synapse/handlers/initial_sync.py +++ b/synapse/handlers/initial_sync.py @@ -143,7 +143,7 @@ class InitialSyncHandler: to_key=int(now_token.receipt_key), ) if self.hs.config.experimental.msc2285_enabled: - receipt = ReceiptEventSource.filter_out_private(receipt, user_id) + receipt = ReceiptEventSource.filter_out_private_receipts(receipt, user_id) tags_by_room = await self.store.get_tags_for_user(user_id) @@ -449,7 +449,9 @@ class InitialSyncHandler: if not receipts: return [] if self.hs.config.experimental.msc2285_enabled: - receipts = ReceiptEventSource.filter_out_private(receipts, user_id) + receipts = ReceiptEventSource.filter_out_private_receipts( + receipts, user_id + ) return receipts presence, receipts, (messages, token) = await make_deferred_yieldable( |