Also copy over contextEntry from otherEntry

This commit is contained in:
RMidhunSuresh 2021-12-21 13:46:21 +05:30
parent 78f97c6532
commit 595deb3a3d

View file

@ -42,7 +42,8 @@ export class EventEntry extends BaseEventEntry {
if (other._decryptionError && !this._decryptionError) {
this._decryptionError = other._decryptionError;
}
this._contextForEntries = other._contextForEntries;
this._contextForEntries = other.contextForEntries;
this._contextEntry = other.contextEntry;
}
setContextEntry(entry) {