Merge pull request #2156 from matrix-org/bwindels/dontrefreshmembersforotherrooms

avoid memberlist refresh for events related to rooms other but the current
This commit is contained in:
David Baker
2018-09-07 13:57:29 +01:00
committed by GitHub
2 changed files with 11 additions and 1 deletions

View File

@@ -186,6 +186,9 @@ module.exports = React.createClass({
},
onRoomStateMember: function(ev, state, member) {
if (member.roomId !== this.props.roomId) {
return;
}
// redraw the badge on the membership list
if (this.state.phase === this.Phase.RoomMemberList && member.roomId === this.props.roomId) {
this._delayedUpdate();