Merge pull request #5520 from vector-im/luke/right-panel-no-group

Do not init a group store when no groupId specified
This commit is contained in:
David Baker
2017-11-06 14:10:27 +00:00
committed by GitHub

View File

@@ -127,8 +127,9 @@ module.exports = React.createClass({
},
_initGroupStore(groupId) {
if (!groupId) return;
this._groupStore = GroupStoreCache.getGroupStore(
this.context.matrixClient, this.props.groupId,
this.context.matrixClient, groupId,
);
this._groupStore.registerListener(this.onGroupStoreUpdated);
},