Only attempt to peek once in the lifetime of RoomView

This commit is contained in:
Luke Barnard 2017-06-14 16:50:46 +01:00
parent 2d6ba056d1
commit b5fd78a97f

View File

@ -191,7 +191,9 @@ module.exports = React.createClass({
this.setState(newState, () => {
// At this point, this.state.roomId could be null (e.g. the alias might not
// have been resolved yet) so anything called here must handle this case.
if (initial) {
this._onHaveRoom();
}
});
},