If no roomId was saved go to space home

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Š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
1 changed files with 10 additions and 1 deletions

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) {