1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-13 08:02:38 +03:00

oops, actually refresh roomlist when its state changes!

This commit is contained in:
Matthew Hodgson
2017-04-20 15:47:59 +01:00
parent 0d8d3c6710
commit 35a16edccc

View File

@@ -44,6 +44,9 @@ module.exports = React.createClass({
shouldComponentUpdate: function(nextProps, nextState) {
if (nextProps.collapsed !== this.props.collapsed) 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;
},