1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Fix add existing to space dialog no longer showing rooms for public spaces

This commit is contained in:
Michael Telatynski
2021-04-25 09:33:44 +01:00
parent 06726d38fe
commit 4411498057

View File

@@ -68,9 +68,15 @@ const AddExistingToSpaceDialog: React.FC<IProps> = ({ matrixClient: cli, space,
if (room !== space && room !== selectedSpace && !existingSubspacesSet.has(room)) {
arr[0].push(room);
}
} else if (!existingRoomsSet.has(room) && joinRule !== "public") {
} else if (!existingRoomsSet.has(room)) {
if (DMRoomMap.shared().getUserIdForRoomId(room.roomId)) {
// Only show DMs for non-public spaces as they make very little sense in spaces other than "Just Me" ones.
arr[DMRoomMap.shared().getUserIdForRoomId(room.roomId) ? 2 : 1].push(room);
if (joinRule !== "public") {
arr[2].push(room);
}
} else {
arr[1].push(room);
}
}
return arr;
}, [[], [], []]);