Fix dodgy merge done in 874a7bf

where develop branch should have been used for a chunk of code
pull/21833/head
lukebarnard 2018-01-02 19:26:56 +00:00
parent 5abf0440c6
commit 57fb09dfb7
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ module.exports = React.createClass({
this._groupStoreTokens.push( this._groupStoreTokens.push(
this._groupStores[tag].registerListener(() => { this._groupStores[tag].registerListener(() => {
// This group's rooms or members may have updated, update rooms for its tag // This group's rooms or members may have updated, update rooms for its tag
this.updateSelectedTagsRooms(dmRoomMap, [tag]); this.updateVisibleRoomsForTag(dmRoomMap, tag);
this.updateVisibleRooms();
}), }),
); );
}); });