diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-01-21 05:31:31 -0500 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-01-21 10:40:34 +0000 |
commit | 7a11509d17f56b8711a3bda11491b3a5a42a2f67 (patch) | |
tree | 75c44a76c4ef2398db67b7181230bc3c9cfa6e06 /synapse/events | |
parent | Correctly await on_logged_out callbacks (#11786) (diff) | |
download | synapse-7a11509d17f56b8711a3bda11491b3a5a42a2f67.tar.xz |
Do not try to serialize raw aggregations dict. (#11791)
Diffstat (limited to 'synapse/events')
-rw-r--r-- | synapse/events/utils.py | 4 |
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, |