Catch and log errors from getting group profile
This commit is contained in:
parent
9ed9422af8
commit
3342754a72
1 changed files with 2 additions and 0 deletions
|
@ -52,6 +52,8 @@ const GroupTile = React.createClass({
|
||||||
componentWillMount: function() {
|
componentWillMount: function() {
|
||||||
FlairStore.getGroupProfileCached(this.context.matrixClient, this.props.groupId).then((profile) => {
|
FlairStore.getGroupProfileCached(this.context.matrixClient, this.props.groupId).then((profile) => {
|
||||||
this.setState({profile});
|
this.setState({profile});
|
||||||
|
}).catch((err) => {
|
||||||
|
console.error('Error whilst getting cached profile for GroupTile', err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue