From 9fd5d4e9defdc1320cc395403acb749007190527 Mon Sep 17 00:00:00 2001 From: Aaron Imming Date: Thu, 21 Mar 2019 15:56:32 +0800 Subject: [PATCH] Fix function call in then --- src/botPage/common/symbolApi/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/botPage/common/symbolApi/index.js b/src/botPage/common/symbolApi/index.js index 6ed3269760..67923f146e 100644 --- a/src/botPage/common/symbolApi/index.js +++ b/src/botPage/common/symbolApi/index.js @@ -58,7 +58,7 @@ export default class _Symbol { if (tokenList.length) { this.api .authorize(tokenList[0].token) - .then(getActiveSymbolsLogic()) + .then(() => getActiveSymbolsLogic()) .catch(() => { removeAllTokens(); getActiveSymbolsLogic();