Fix crash on logging in

If you arrived at the page via a link to a room.

Fixes https://github.com/vector-im/vector-web/issues/2634
pull/21833/head
David Baker 2016-11-24 12:33:31 +00:00
parent 7650e3de6e
commit 0bc4659fe0
1 changed files with 4 additions and 0 deletions

View File

@ -75,6 +75,9 @@ module.exports = React.createClass({
loading: true,
screen: undefined,
// What the LoggedInView would be showing if visible
page_type: PageTypes.RoomDirectory,
// If we are viewing a room by alias, this contains the alias
currentRoomAlias: null,
@ -235,6 +238,7 @@ module.exports = React.createClass({
setStateForNewScreen: function(state) {
const newState = {
screen: undefined,
page_type: PageTypes.RoomDirectory,
currentRoomAlias: null,
currentRoomId: null,
viewUserId: null,