From bf794f2564888e2a4bffa141065c321650488029 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 28 Feb 2021 01:39:48 -0600 Subject: Compiled TS into JS --- build/hypixelCached.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/hypixelCached.js b/build/hypixelCached.js index 67d34d9..880d0fb 100644 --- a/build/hypixelCached.js +++ b/build/hypixelCached.js @@ -83,7 +83,7 @@ async function uuidFromUser(user) { const username = usernameCache.get(util_1.undashUuid(user)); // if it has .then, then that means its a waitForSet promise. This is done to prevent requests made while it is already requesting if (username.then) { - return (await username()).key; + return (await username).key; } else return util_1.undashUuid(user); -- cgit