0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-02 18:59:04 +02:00

Include prev_content field in AS events (#11798)

* Include 'prev_content' field in AS events

Signed-off-by: Vaishnav Nair <nairvaishnav007@icloud.com>
Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
This commit is contained in:
Vaishnav Nair 2022-01-26 20:18:27 +05:30 committed by GitHub
parent 2d3bd9aa67
commit cef0d5d90a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/11798.bugfix Normal file
View file

@ -0,0 +1 @@
Include a `prev_content` field in state events sent to Application Services. Contributed by @totallynotvaishnav.

View file

@ -384,7 +384,7 @@ class ApplicationServiceTransactionWorkerStore(
"get_new_events_for_appservice", get_new_events_for_appservice_txn
)
events = await self.get_events_as_list(event_ids)
events = await self.get_events_as_list(event_ids, get_prev_content=True)
return upper_bound, events