Remove delay used in testing

pull/21833/head
Luke Barnard 2018-03-06 12:13:46 +00:00
parent afbd563810
commit 0fc79a4a0d
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class FlairStore extends EventEmitter {
// No request yet, start one // No request yet, start one
console.log('FlairStore: Request group profile of ' + groupId); console.log('FlairStore: Request group profile of ' + groupId);
this._groupProfilesPromise[groupId] = matrixClient.getGroupProfile(groupId).delay(5000); this._groupProfilesPromise[groupId] = matrixClient.getGroupProfile(groupId);
let profile; let profile;
try { try {