oops, actually refresh roomlist when its state changes!

pull/21833/head
Matthew Hodgson 2017-04-20 15:47:59 +01:00
parent 0d8d3c6710
commit 35a16edccc
1 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,9 @@ module.exports = React.createClass({
shouldComponentUpdate: function(nextProps, nextState) { shouldComponentUpdate: function(nextProps, nextState) {
if (nextProps.collapsed !== this.props.collapsed) return true; if (nextProps.collapsed !== this.props.collapsed) return true;
if (nextProps.searchFilter !== this.props.searchFilter) return true; if (nextProps.searchFilter !== this.props.searchFilter) return true;
if (nextState.lists !== this.props.lists ||
nextState.isLoadingLeftRooms !== this.isLoadingLeftRooms ||
nextState.incomingCall !== this.incomingCall) return true;
return false; return false;
}, },