Guard around SpaceStore onAccountData handler prevEvent (#7123)
This commit is contained in:
parent
98ea2c3302
commit
a16e6dab4d
1 changed files with 2 additions and 2 deletions
|
@ -748,9 +748,9 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private onAccountData = (ev: MatrixEvent, lastEvent: MatrixEvent) => {
|
private onAccountData = (ev: MatrixEvent, prevEvent?: MatrixEvent) => {
|
||||||
if (!this.allRoomsInHome && ev.getType() === EventType.Direct) {
|
if (!this.allRoomsInHome && ev.getType() === EventType.Direct) {
|
||||||
const lastContent = lastEvent.getContent();
|
const lastContent = prevEvent?.getContent() ?? {};
|
||||||
const content = ev.getContent();
|
const content = ev.getContent();
|
||||||
|
|
||||||
const diff = objectDiff<Record<string, string[]>>(lastContent, content);
|
const diff = objectDiff<Record<string, string[]>>(lastContent, content);
|
||||||
|
|
Loading…
Reference in a new issue