mirror of https://github.com/vector-im/riot-web
Fix if-statement thinko
parent
d55d61e456
commit
30566beb43
|
@ -230,7 +230,8 @@ module.exports = React.createClass({
|
|||
if (room) {
|
||||
this._updateAutoComplete(room);
|
||||
this.tabComplete.loadEntries(room);
|
||||
} else if (!this.state.joining && this.state.roomId) {
|
||||
}
|
||||
if (!room && !this.state.joining && this.state.roomId) {
|
||||
if (this.props.autoJoin) {
|
||||
this.onJoinButtonClicked();
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue