diff --git a/lib/pages/chat_list.dart b/lib/pages/chat_list.dart index 519202a69..8aeb6a055 100644 --- a/lib/pages/chat_list.dart +++ b/lib/pages/chat_list.dart @@ -185,7 +185,9 @@ class ChatListController extends State { } bool roomCheck(Room room) { - if (room.isSpace && room.membership == Membership.join) return false; + if (room.isSpace && room.membership == Membership.join && !room.isUnread) { + return false; + } if (activeSpaceId != null) { final space = Matrix.of(context).client.getRoomById(activeSpaceId); if (space.spaceChildren?.any((child) => child.roomId == room.id) ??