Catch and log errors from getting group profile

pull/21833/head
Luke Barnard 2017-11-28 10:11:25 +00:00
parent 9ed9422af8
commit 3342754a72
1 changed files with 2 additions and 0 deletions

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);
});
},