summary refs log tree commit diff
path: root/synapse/events/utils.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-01-21 05:31:31 -0500
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-01-21 10:40:34 +0000
commit7a11509d17f56b8711a3bda11491b3a5a42a2f67 (patch)
tree75c44a76c4ef2398db67b7181230bc3c9cfa6e06 /synapse/events/utils.py
parentCorrectly await on_logged_out callbacks (#11786) (diff)
downloadsynapse-7a11509d17f56b8711a3bda11491b3a5a42a2f67.tar.xz
Do not try to serialize raw aggregations dict. (#11791)
Diffstat (limited to 'synapse/events/utils.py')
-rw-r--r--synapse/events/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/events/utils.py b/synapse/events/utils.py

index de0e0c1731..918adeecf8 100644 --- a/synapse/events/utils.py +++ b/synapse/events/utils.py
@@ -402,7 +402,7 @@ class EventClientSerializer: if bundle_aggregations: event_aggregations = bundle_aggregations.get(event.event_id) if event_aggregations: - self._injected_bundled_aggregations( + self._inject_bundled_aggregations( event, time_now, bundle_aggregations[event.event_id], @@ -411,7 +411,7 @@ class EventClientSerializer: return serialized_event - def _injected_bundled_aggregations( + def _inject_bundled_aggregations( self, event: EventBase, time_now: int,