mirror of https://github.com/vector-im/riot-web
Only view welcome user if we are not looking at a room
parent
cdd8cc41e2
commit
c82e79ab5f
|
@ -892,13 +892,14 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
// Set the display name = user ID localpart
|
// Set the display name = user ID localpart
|
||||||
MatrixClientPeg.get().setDisplayName(
|
MatrixClientPeg.get().setDisplayName(
|
||||||
MatrixClientPeg.get().getUserIdLocalpart()
|
MatrixClientPeg.get().getUserIdLocalpart(),
|
||||||
);
|
);
|
||||||
|
|
||||||
if (this.props.config.welcomeUserId) {
|
if (this.props.config.welcomeUserId) {
|
||||||
createRoom({
|
createRoom({
|
||||||
dmUserId: this.props.config.welcomeUserId,
|
dmUserId: this.props.config.welcomeUserId,
|
||||||
andView: false,
|
// Only view the welcome user if we're NOT looking at a room
|
||||||
|
andView: !this.state.currentRoomId,
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue