Skip to content
Snippets Groups Projects
Commit f54b7052 authored by Mark Haines's avatar Mark Haines
Browse files

Return the store_id from persist_event

parent 1d95e787
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,9 @@ class DataStore(RoomMemberStore, RoomStore,
if pdu is not None:
self._persist_event_pdu_txn(txn, pdu)
if event is not None:
self._persist_event_txn(txn, event, backfilled, stream_ordering)
return self._persist_event_txn(
txn, event, backfilled, stream_ordering
)
def _persist_event_pdu_txn(self, txn, pdu):
cols = dict(pdu.__dict__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment