diff --git a/src/components/views/groups/GroupTile.js b/src/components/views/groups/GroupTile.js index 35c8dde2ab..7ea67de98e 100644 --- a/src/components/views/groups/GroupTile.js +++ b/src/components/views/groups/GroupTile.js @@ -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); }); },