From 479e88cff7dbd39a5859a908e078482681dabb27 Mon Sep 17 00:00:00 2001 From: lukebarnard Date: Tue, 2 Jan 2018 18:55:50 +0000 Subject: [PATCH] Log an error to get group profile data --- src/stores/FlairStore.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/FlairStore.js b/src/stores/FlairStore.js index 7ffa1a4c30..7a3aa31e4e 100644 --- a/src/stores/FlairStore.js +++ b/src/stores/FlairStore.js @@ -161,6 +161,7 @@ class FlairStore { try { profile = await this._groupProfilesPromise[groupId]; } catch (e) { + console.log('Failed to get group profile for ' + groupId, e); // Don't retry, but allow a retry when the profile is next requested delete this._groupProfilesPromise[groupId]; return;