mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Guard around SpaceStore onAccountData handler prevEvent (#7123)
This commit is contained in:
parent
98ea2c3302
commit
a16e6dab4d
@ -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) {
|
||||
const lastContent = lastEvent.getContent();
|
||||
const lastContent = prevEvent?.getContent() ?? {};
|
||||
const content = ev.getContent();
|
||||
|
||||
const diff = objectDiff<Record<string, string[]>>(lastContent, content);
|
||||
|
Loading…
Reference in New Issue
Block a user