diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-03-03 10:43:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 10:43:06 -0500 |
commit | 1d11b452b70c768e4919bd9cf6bcaeda2050a3d4 (patch) | |
tree | 772b95de8e7ec9714b9e6334088174abad0a9222 /synapse/handlers/events.py | |
parent | Enable MSC2716 Complement tests in Synapse (#12145) (diff) | |
download | synapse-1d11b452b70c768e4919bd9cf6bcaeda2050a3d4.tar.xz |
Use the proper serialization format when bundling aggregations. (#12090)
This ensures that the `latest_event` field of the bundled aggregation for threads uses the same format as the other events in the response.
Diffstat (limited to 'synapse/handlers/events.py')
-rw-r--r-- | synapse/handlers/events.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/events.py b/synapse/handlers/events.py index 97e75e60c3..d2ccb5c5d3 100644 --- a/synapse/handlers/events.py +++ b/synapse/handlers/events.py @@ -19,6 +19,7 @@ from typing import TYPE_CHECKING, Iterable, List, Optional from synapse.api.constants import EduTypes, EventTypes, Membership from synapse.api.errors import AuthError, SynapseError from synapse.events import EventBase +from synapse.events.utils import SerializeEventConfig from synapse.handlers.presence import format_user_presence_state from synapse.streams.config import PaginationConfig from synapse.types import JsonDict, UserID @@ -120,7 +121,7 @@ class EventStreamHandler: chunks = self._event_serializer.serialize_events( events, time_now, - as_client_event=as_client_event, + config=SerializeEventConfig(as_client_event=as_client_event), ) chunk = { |