Check room ID matches

pull/21833/head
David Baker 2017-08-24 11:55:39 +01:00
parent 67824e9acc
commit a2943ac348
1 changed files with 3 additions and 1 deletions

View File

@ -512,7 +512,9 @@ var TimelinePanel = React.createClass({
// TODO: We should restrict this to only events in our timeline,
// but possibly the event tile itself should just update when this
// happens to save us re-rendering the whole timeline.
this.forceUpdate();
if (ev.getRoomId() === this.props.timelineSet.room.roomId) {
this.forceUpdate();
}
},
onSync: function(state, prevState, data) {