forgot await

This commit is contained in:
Bruno Windels 2020-09-08 15:00:29 +02:00
parent 5a8aac57ac
commit 650df6fea8

View file

@ -219,7 +219,7 @@ export class SyncWriter {
}
// important this happens before _writeTimeline so
// members are available in the transaction
const memberChanges = this._writeStateEvents(roomResponse, trackNewlyJoined, txn);
const memberChanges = await this._writeStateEvents(roomResponse, trackNewlyJoined, txn);
const timelineResult = await this._writeTimeline(entries, timeline, currentKey, trackNewlyJoined, txn);
currentKey = timelineResult.currentKey;
// merge member changes from state and timeline, giving precedence to the latter