From 07d92497a362e9a15f6319c9b73b1280d6f39c87 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 28 Dec 2021 19:44:22 -0600 Subject: don't remove multiple times --- src/hypixelApi.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index 9a0a6da..1de583b 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -173,8 +173,10 @@ export let sendApiRequest = async function sendApiRequest({ path, key, args }): // if the cause is "Invalid API key", remove the key from the list of keys and try again if (fetchJsonParsed.cause === 'Invalid API key') { - apiKeys.splice(apiKeys.indexOf(key), 1) - console.log(`${key} is invalid, removing it from the list of keys`) + if (apiKeys.includes(key)) { + apiKeys.splice(apiKeys.indexOf(key), 1) + console.log(`${key} is invalid, removing it from the list of keys`) + } return await sendApiRequest({ path, key: chooseApiKey(), args }) } -- cgit