If no roomId was saved go to space home

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-03-25 20:51:21 +01:00
parent ef3d87f8e8
commit 67dcb3a448
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -125,7 +125,16 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
action: "view_room",
room_id: roomId,
});
} // TODO: Handle else
} else {
if (space) {
defaultDispatcher.dispatch({
action: "view_room",
room_id: space.roomId,
});
} else {
// TODO: Switch to first room in the RoomList
}
}
// persist space selected
if (space) {