mirror of https://github.com/vector-im/riot-web
If no roomId was saved go to space home
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
ef3d87f8e8
commit
67dcb3a448
|
@ -125,7 +125,16 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||||
action: "view_room",
|
action: "view_room",
|
||||||
room_id: roomId,
|
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
|
// persist space selected
|
||||||
if (space) {
|
if (space) {
|
||||||
|
|
Loading…
Reference in New Issue