Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix room tile badge not disappearing when receiving a read receipt
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebarnard1 committed Mar 20, 2018
1 parent eb52487 commit 856c499
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/views/rooms/RoomTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,15 @@ module.exports = React.createClass({
dis.unregister(this.dispatcherRef);
},

componentWillReceiveProps: function(props) {
// XXX: This could be a lot better - this makes the assumption that
// the notification count may have changed when the properties of
// the room tile change.
this.setState({
notificationCount: this.props.room.getUnreadNotificationCount(),
});
},

// Do a simple shallow comparison of props and state to avoid unnecessary
// renders. The assumption made here is that only state and props are used
// in rendering this component and children.
Expand Down

0 comments on commit 856c499

Please sign in to comment.