mirror of https://github.com/vector-im/riot-web
Remove racey condition
joining might become false before we get the room down the syncpull/21833/head
parent
ed5f01d46f
commit
58554cce53
|
@ -617,7 +617,7 @@ module.exports = React.createClass({
|
|||
},
|
||||
|
||||
onRoom: function(room) {
|
||||
if (!room || room.roomId !== this.state.roomId || !this.state.joining) {
|
||||
if (!room || room.roomId !== this.state.roomId) {
|
||||
return;
|
||||
}
|
||||
this.setState({
|
||||
|
|
Loading…
Reference in New Issue