diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-28 01:39:48 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-28 01:39:48 -0600 |
commit | bf794f2564888e2a4bffa141065c321650488029 (patch) | |
tree | d8c4d703b9b52929976df60762478783d6f5c86a | |
parent | 2fbdda14faa3d7382837ef075d7fdd8a8d3a7f6a (diff) | |
download | skyblock-api-bf794f2564888e2a4bffa141065c321650488029.tar.gz skyblock-api-bf794f2564888e2a4bffa141065c321650488029.tar.bz2 skyblock-api-bf794f2564888e2a4bffa141065c321650488029.zip |
Compiled TS into JS
-rw-r--r-- | build/hypixelCached.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); |