better naming

This commit is contained in:
Bruno Windels 2020-03-14 20:49:15 +01:00
parent ac4a7f971b
commit 56c87b3966
2 changed files with 2 additions and 2 deletions

View file

@ -31,12 +31,12 @@ export default class Room extends EventEmitter {
}
afterSync({summaryChanges, newTimelineEntries, newLiveKey, removedPendingEvents}) {
this._syncWriter.afterSync(newLiveKey);
if (summaryChanges) {
this._summary.afterSync(summaryChanges);
this.emit("change");
this._emitCollectionChange(this);
}
this._syncWriter.setKeyOnCompleted(newLiveKey);
if (this._timeline) {
this._timeline.appendLiveEntries(newTimelineEntries);
}

View file

@ -129,7 +129,7 @@ export default class SyncWriter {
return {entries, newLiveKey: currentKey};
}
setKeyOnCompleted(newLiveKey) {
afterSync(newLiveKey) {
this._lastLiveKey = newLiveKey;
}
}