diff options
author | Erik Johnston <erikj@matrix.org> | 2023-10-27 10:04:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-27 09:04:08 +0000 |
commit | c02406ac711095eedbeeff229af8e368f77196aa (patch) | |
tree | 4585ed545c0ed40240dc78c524344fb42a13d2d8 /synapse/rest/client/notifications.py | |
parent | Remove more usages of cursor_to_dict. (#16551) (diff) | |
download | synapse-c02406ac711095eedbeeff229af8e368f77196aa.tar.xz |
Add new module API for adding custom fields to events `unsigned` section (#16549)
Diffstat (limited to 'synapse/rest/client/notifications.py')
-rw-r--r-- | synapse/rest/client/notifications.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/notifications.py b/synapse/rest/client/notifications.py index e7fe1332e7..5688d8593d 100644 --- a/synapse/rest/client/notifications.py +++ b/synapse/rest/client/notifications.py @@ -87,7 +87,7 @@ class NotificationsServlet(RestServlet): "actions": pa.actions, "ts": pa.received_ts, "event": ( - self._event_serializer.serialize_event( + await self._event_serializer.serialize_event( notif_events[pa.event_id], now, config=serialize_options, |