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

Commit

Permalink
Merge pull request #1807 from matrix-org/luke/fix-room-tile-badge-fli…
Browse files Browse the repository at this point in the history
…cker

Fix room tile badge not disappearing when receiving a read receipt
  • Loading branch information
dbkr authored Mar 20, 2018
2 parents eb52487 + 856c499 commit 55aeac6
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 55aeac6

Please sign in to comment.