1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-16 22:01:54 +03:00

Fix the onFinished for timeline pos dialog

This was causing a blank RoomView because it was trying to work with `room_id = undefined`.
This commit is contained in:
Luke Barnard
2017-03-30 17:18:22 +01:00
parent 11a1c8099c
commit fff83ba234
2 changed files with 1 additions and 11 deletions

View File

@ -819,7 +819,7 @@ var TimelinePanel = React.createClass({
// go via the dispatcher so that the URL is updated
dis.dispatch({
action: 'view_room',
room_id: this.props.timelineSet.roomId,
room_id: this.props.timelineSet.room.roomId,
});
};
}