mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 00:42:14 -04:00
Return the raw federation event rather than adding extra keys for federation data.
This commit is contained in:
parent
5940ec993b
commit
edb557b2ad
6 changed files with 27 additions and 19 deletions
|
@ -47,7 +47,7 @@ class EventStreamHandler(BaseHandler):
|
|||
@defer.inlineCallbacks
|
||||
@log_function
|
||||
def get_stream(self, auth_user_id, pagin_config, timeout=0,
|
||||
trim_events=True):
|
||||
as_client_event=True):
|
||||
auth_user = self.hs.parse_userid(auth_user_id)
|
||||
|
||||
try:
|
||||
|
@ -80,7 +80,7 @@ class EventStreamHandler(BaseHandler):
|
|||
)
|
||||
|
||||
chunks = [
|
||||
self.hs.serialize_event(e, trim_events) for e in events
|
||||
self.hs.serialize_event(e, as_client_event) for e in events
|
||||
]
|
||||
|
||||
chunk = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue