mirror of https://github.com/vector-im/riot-web
Catch and log errors from getting group profile
parent
9ed9422af8
commit
3342754a72
|
@ -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);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue