Dont' filter by space as synapse doesn't support it

This commit is contained in:
Kegan Dougal 2024-09-16 16:31:35 +01:00
parent ee85f73ad1
commit be76852529

View File

@ -337,7 +337,8 @@ export class SlidingRoomListStoreClass extends AsyncStoreWithClient<IState> impl
} }
private onSelectedSpaceUpdated = (activeSpace: SpaceKey, allRoomsInHome: boolean): void => { private onSelectedSpaceUpdated = (activeSpace: SpaceKey, allRoomsInHome: boolean): void => {
logger.info("SlidingRoomListStore.onSelectedSpaceUpdated", activeSpace); logger.info("TODO: Synapse does not implement filters.spaces yet. SlidingRoomListStore.onSelectedSpaceUpdated", activeSpace);
return;
// update the untagged filter // update the untagged filter
const tagId = DefaultTagID.Untagged; const tagId = DefaultTagID.Untagged;
const filters = filterConditions[tagId]; const filters = filterConditions[tagId];