Fix SpaceStore reset behaviour
This commit is contained in:
parent
f85d3643ee
commit
da46e90896
1 changed files with 12 additions and 1 deletions
|
@ -499,6 +499,17 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
protected async reset() {
|
||||||
|
this.rootSpaces = [];
|
||||||
|
this.orphanedRooms = new Set();
|
||||||
|
this.parentMap = new EnhancedMap();
|
||||||
|
this.notificationStateMap = new Map();
|
||||||
|
this.spaceFilteredRooms = new Map();
|
||||||
|
this._activeSpace = null;
|
||||||
|
this._suggestedRooms = [];
|
||||||
|
this._invitedSpaces = new Set();
|
||||||
|
}
|
||||||
|
|
||||||
protected async onNotReady() {
|
protected async onNotReady() {
|
||||||
if (!SettingsStore.getValue("feature_spaces")) return;
|
if (!SettingsStore.getValue("feature_spaces")) return;
|
||||||
if (this.matrixClient) {
|
if (this.matrixClient) {
|
||||||
|
@ -508,7 +519,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||||
this.matrixClient.removeListener("Room.accountData", this.onRoomAccountData);
|
this.matrixClient.removeListener("Room.accountData", this.onRoomAccountData);
|
||||||
this.matrixClient.removeListener("accountData", this.onAccountData);
|
this.matrixClient.removeListener("accountData", this.onAccountData);
|
||||||
}
|
}
|
||||||
await this.reset({});
|
await this.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected async onReady() {
|
protected async onReady() {
|
||||||
|
|
Loading…
Reference in a new issue