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

Check room ID matches

This commit is contained in:
David Baker
2017-08-24 11:55:39 +01:00
parent 67824e9acc
commit a2943ac348

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) {