Catch and log errors from getting group profile

This commit is contained in:
Luke Barnard 2017-11-28 10:11:25 +00:00
parent 9ed9422af8
commit 3342754a72

View file

@ -52,6 +52,8 @@ const GroupTile = React.createClass({
componentWillMount: function() {
FlairStore.getGroupProfileCached(this.context.matrixClient, this.props.groupId).then((profile) => {
this.setState({profile});
}).catch((err) => {
console.error('Error whilst getting cached profile for GroupTile', err);
});
},