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
commit 877e949d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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();