From 833cd321f3d3519f73b4c7b23a1bee006fd532bf Mon Sep 17 00:00:00 2001 From: lukebarnard Date: Tue, 2 Jan 2018 15:58:24 +0000 Subject: [PATCH] Log warning in case of failed group profile fetch --- src/components/views/elements/TagTile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/views/elements/TagTile.js b/src/components/views/elements/TagTile.js index 057ec4921b..00aea1efd3 100644 --- a/src/components/views/elements/TagTile.js +++ b/src/components/views/elements/TagTile.js @@ -58,6 +58,8 @@ export default React.createClass({ ).then((profile) => { if (this.unmounted) return; this.setState({profile}); + }).catch((err) => { + console.warn('Could not fetch group profile for ' + this.props.tag, err); }); } },