mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
When no member, use null
roomId
This commit is contained in:
parent
07633fe67f
commit
89254e77f4
1 changed files with 1 additions and 1 deletions
|
@ -1234,7 +1234,7 @@ module.exports = React.createClass({
|
|||
});
|
||||
} else {
|
||||
// This user is not a member of this room, show the user view
|
||||
member = new Matrix.RoomMember(roomId, userId);
|
||||
member = new Matrix.RoomMember(null, userId);
|
||||
this._setPage(PageTypes.UserView);
|
||||
}
|
||||
dis.dispatch({
|
||||
|
|
Loading…
Reference in a new issue