mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
better naming
This commit is contained in:
parent
ac4a7f971b
commit
56c87b3966
@ -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);
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ export default class SyncWriter {
|
||||
return {entries, newLiveKey: currentKey};
|
||||
}
|
||||
|
||||
setKeyOnCompleted(newLiveKey) {
|
||||
afterSync(newLiveKey) {
|
||||
this._lastLiveKey = newLiveKey;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user