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; }