From 93e440385f216b635606d270254df0d0bbaa9e1f Mon Sep 17 00:00:00 2001 From: FlorianZahn Date: Thu, 14 Oct 2021 02:16:04 +0200 Subject: [PATCH] Removed console.log and redundancy --- src/content.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/content.ts b/src/content.ts index c6318b29..4d4c965e 100644 --- a/src/content.ts +++ b/src/content.ts @@ -776,9 +776,7 @@ async function isVipLookup() { Config.config.lastIsVipUpdate = currentTime; utils.sendRequestToServer("GET", "/api/isUserVIP?userID=" + Config.config.userID, (response) => { - if (response.status === 200 && response.ok) { - console.log(JSON.parse(response.responseText).vip); - console.log(Config.config.userID); + if (response.status === 200) { if (JSON.parse(response.responseText).vip === true) { Config.config.isVip = true; }