Do not get avatars when no groups were/could be retrieved

This commit is contained in:
Luke Barnard 2017-08-31 16:46:39 +01:00
parent 86e8a4c7e2
commit e89d52ccbf

View file

@ -148,6 +148,9 @@ export default class Flair extends React.Component {
} catch (err) {
console.error('Could not get groups for user', this.props.userId, err);
}
if (!groups || groups.length === 0) {
return;
}
const avatarUrls = await this._getAvatarUrls(groups);
if (!this.unmounted) {
this.setState({avatarUrls});