We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78cb262 commit 094ede4Copy full SHA for 094ede4
src/stores/room-list-v3/RoomListStoreV3.ts
@@ -81,6 +81,11 @@ export class RoomListStoreV3Class extends AsyncStoreWithClient<EmptyObject> {
81
super(dispatcher);
82
this.msc3946ProcessDynamicPredecessor = SettingsStore.getValue("feature_dynamic_room_predecessors");
83
SpaceStore.instance.on(UPDATE_SELECTED_SPACE, () => {
84
+ SettingsStore.unwatchSetting("Spaces.showPeopleInSpace");
85
+ SettingsStore.watchSetting("Spaces.showPeopleInSpace", SpaceStore.instance.activeSpace, () =>
86
+ this.onActiveSpaceChanged(),
87
+ );
88
+
89
this.onActiveSpaceChanged();
90
});
91
SpaceStore.instance.on(UPDATE_HOME_BEHAVIOUR, () => this.onActiveSpaceChanged());
0 commit comments