fix logic

This commit is contained in:
Trooper
2022-08-26 13:33:53 +02:00
parent 3d118192ce
commit 551b0debec

View File

@@ -204,8 +204,8 @@ async function handleMessage(json) {
FEE_TOKEN_LIST.push(marketInfo.baseAsset.id); FEE_TOKEN_LIST.push(marketInfo.baseAsset.id);
} }
} else { } else {
if (FEE_TOKEN_LIST.includes(marketInfo.baseAsset.id)) { const index = FEE_TOKEN_LIST.indexOf(marketInfo.baseAsset.id);
const index = FEE_TOKEN_LIST.indexOf(marketInfo.baseAsset.id); if (index >= 0) {
FEE_TOKEN_LIST.splice(index, 1); FEE_TOKEN_LIST.splice(index, 1);
} }
} }
@@ -214,8 +214,8 @@ async function handleMessage(json) {
FEE_TOKEN_LIST.push(marketInfo.quoteAsset.id); FEE_TOKEN_LIST.push(marketInfo.quoteAsset.id);
} }
} else { } else {
if (FEE_TOKEN_LIST.includes(marketInfo.quoteAsset.id)) { const index = FEE_TOKEN_LIST.indexOf(marketInfo.quoteAsset.id);
const index = FEE_TOKEN_LIST.indexOf(marketInfo.quoteAsset.id); if (index >= 0) {
FEE_TOKEN_LIST.splice(index, 1); FEE_TOKEN_LIST.splice(index, 1);
} }
} }