From 0fc79a4a0dc8746e763822b31bb4aa9dd617ccd1 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Tue, 6 Mar 2018 12:13:46 +0000 Subject: [PATCH] Remove delay used in testing --- src/stores/FlairStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/FlairStore.js b/src/stores/FlairStore.js index f8f76dd9af..36b284664a 100644 --- a/src/stores/FlairStore.js +++ b/src/stores/FlairStore.js @@ -167,7 +167,7 @@ class FlairStore extends EventEmitter { // No request yet, start one console.log('FlairStore: Request group profile of ' + groupId); - this._groupProfilesPromise[groupId] = matrixClient.getGroupProfile(groupId).delay(5000); + this._groupProfilesPromise[groupId] = matrixClient.getGroupProfile(groupId); let profile; try {