diff options
author | mat <github@matdoes.dev> | 2021-05-24 18:45:35 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-05-24 18:45:35 -0500 |
commit | ee30474985ca2556f931e4ffd5e3643048bea1c5 (patch) | |
tree | 381e59c2b8e5c50bf0109cb9d1c01d0b611615bf /src/hypixelCached.ts | |
parent | da55f893ef3ea3c55816d36e63f11fe6509ce843 (diff) | |
download | skyblock-api-ee30474985ca2556f931e4ffd5e3643048bea1c5.tar.gz skyblock-api-ee30474985ca2556f931e4ffd5e3643048bea1c5.tar.bz2 skyblock-api-ee30474985ca2556f931e4ffd5e3643048bea1c5.zip |
remove first_join from CleanPlayer
we *probably* don't need it
Diffstat (limited to 'src/hypixelCached.ts')
-rw-r--r-- | src/hypixelCached.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index c14db3e..1f6b7f2 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -247,6 +247,10 @@ async function fetchBasicProfiles(user: string): Promise<CleanBasicProfile[]> { if (debug) console.debug('Cache miss: fetchBasicProfiles', user) const player = await fetchPlayer(playerUuid) + if (!player) { + console.log('bruh playerUuid', playerUuid) + return [] + } const profiles = player.profiles basicProfilesCache.set(playerUuid, profiles) |