Merge pull request #1574 from matrix-org/luke/fix-groups-rooms-list-view-room-dispatch
Use, if possible, a room's canonical or first alias when viewing the …
This commit is contained in:
commit
d03f2826c3
1 changed files with 1 additions and 0 deletions
|
@ -49,6 +49,7 @@ const RoomDetailRow = React.createClass({
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
action: 'view_room',
|
action: 'view_room',
|
||||||
room_id: this.props.room.roomId,
|
room_id: this.props.room.roomId,
|
||||||
|
room_alias: this.props.room.canonicalAlias || (this.props.room.aliases || [])[0],
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue