Check if contextEvent was found

This commit is contained in:
RMidhunSuresh 2021-12-13 15:13:45 +05:30
parent 05d2defa2d
commit 640a3fb9fa

View file

@ -297,9 +297,11 @@ export class Timeline {
let contextEvent = this._getTrackedEvent(id);
if (!contextEvent) {
contextEvent = await this._getEventFromStorage(id) ?? await this._getEventFromHomeserver(id);
// this entry was created from storage/hs, so it's not tracked by remoteEntries
// we track them here so that we can update reply previews later
this._contextEntriesNotInTimeline.set(id, contextEvent);
if (contextEvent) {
// this entry was created from storage/hs, so it's not tracked by remoteEntries
// we track them here so that we can update reply previews later
this._contextEntriesNotInTimeline.set(id, contextEvent);
}
}
if (contextEvent) {
contextEvent.setAsContextOf(entry);