Fix left spaces not disappearing from the space panel

pull/21833/head
Michael Telatynski 2021-03-22 17:47:48 +00:00
parent 2818cdf3d4
commit 796bfd851d
1 changed files with 8 additions and 5 deletions

View File

@ -196,13 +196,16 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
}; };
public rebuild = throttle(() => { // exported for tests public rebuild = throttle(() => { // exported for tests
const visibleRooms = this.matrixClient.getVisibleRooms(); // get all most-upgraded rooms & spaces except spaces which have been left (historical)
const visibleRooms = this.matrixClient.getVisibleRooms().filter(r => {
return !r.isSpaceRoom() || r.getMyMembership() === "join";
});
const unseenChildren = new Set<Room>(visibleRooms);
const backrefs = new EnhancedMap<string, Set<string>>();
// Sort spaces by room ID to force the loop breaking to be deterministic // Sort spaces by room ID to force the loop breaking to be deterministic
const spaces = sortBy(this.getSpaces(), space => space.roomId); const spaces = sortBy(visibleRooms.filter(r => r.isSpaceRoom()), space => space.roomId);
const unseenChildren = new Set<Room>([...visibleRooms, ...spaces]);
const backrefs = new EnhancedMap<string, Set<string>>();
// TODO handle cleaning up links when a Space is removed // TODO handle cleaning up links when a Space is removed
spaces.forEach(space => { spaces.forEach(space => {