From 2e85650dfcafe4cce9e9286d445e3e05d84039b5 Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Wed, 19 Oct 2022 17:47:09 +0100 Subject: [PATCH] Remove debug --- src/utils/utils.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/utils.js b/src/utils/utils.js index 5920e62..521af68 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -50,7 +50,6 @@ export default class Utils { } static async checkLeaderboard(url, steamId) { - console.log(url.replace("%s", steamId)); const data = await fetch(url.replace("%s", steamId), { headers: { "X-Requested-With": "BeatSaber Overlay", @@ -60,7 +59,6 @@ export default class Utils { return true; // Just assume it's true is we are rate limited } const json = await data.json(); - return !!json.pp; } }