Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Include room states on invite events sent to ASes #6455

Merged
merged 7 commits into from
Jul 10, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
send invite states to appservices
Sorunome committed Dec 3, 2019

Unverified

This user has not yet uploaded their public signing key.
commit ea33fb267c5597cc787dcbeb1cd283f45c72d529
2 changes: 1 addition & 1 deletion synapse/appservice/api.py
Original file line number Diff line number Diff line change
@@ -237,4 +237,4 @@ def push_bulk(self, service, events, txn_id=None):

def _serialize(self, events):
time_now = self.clock.time_msec()
return [serialize_event(e, time_now, as_client_event=True) for e in events]
return [serialize_event(e, time_now, as_client_event=True, is_invite=True) for e in events]