Don't announce that we've entered the null room on login if there are no rooms.

This commit is contained in:
David Baker 2015-07-22 21:37:46 -07:00
parent 9847383ba6
commit c2e92045d0

View File

@ -195,12 +195,14 @@ module.exports = {
firstRoom = RoomListSorter.mostRecentActivityFirst(
cli.getRooms()
)[0].roomId;
}
self.setState({ready: true, currentRoom: firstRoom});
self.notifyNewScreen('room/'+firstRoom);
} else {
self.setState({ready: true});
}
} else {
self.setState({ready: true});
}
dis.dispatch({action: 'focus_composer'});
});
cli.on('Call.incoming', function(call) {