You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Fix if-statement thinko
This commit is contained in:
@ -230,7 +230,8 @@ module.exports = React.createClass({
|
|||||||
if (room) {
|
if (room) {
|
||||||
this._updateAutoComplete(room);
|
this._updateAutoComplete(room);
|
||||||
this.tabComplete.loadEntries(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) {
|
if (this.props.autoJoin) {
|
||||||
this.onJoinButtonClicked();
|
this.onJoinButtonClicked();
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user