diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/cleaners/player.js | 2 | ||||
-rw-r--r-- | build/hypixelCached.js | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/build/cleaners/player.js b/build/cleaners/player.js index 4957e7a..dadb129 100644 --- a/build/cleaners/player.js +++ b/build/cleaners/player.js @@ -15,7 +15,7 @@ async function cleanPlayerResponse(data) { username: data.displayname, rank: rank_1.cleanRank(data), socials: socialmedia_1.cleanSocialMedia(data), - first_join: data.firstLogin / 1000, + // first_join: data.firstLogin / 1000, profiles: profiles_1.cleanPlayerSkyblockProfiles((_b = (_a = data.stats) === null || _a === void 0 ? void 0 : _a.SkyBlock) === null || _b === void 0 ? void 0 : _b.profiles) }; } diff --git a/build/hypixelCached.js b/build/hypixelCached.js index fcdfcf9..8dac057 100644 --- a/build/hypixelCached.js +++ b/build/hypixelCached.js @@ -231,6 +231,10 @@ async function fetchBasicProfiles(user) { if (_1.debug) console.debug('Cache miss: fetchBasicProfiles', user); const player = await fetchPlayer(playerUuid); + if (!player) { + console.log('bruh playerUuid', playerUuid); + return []; + } const profiles = player.profiles; exports.basicProfilesCache.set(playerUuid, profiles); // cache the profile names and uuids to profileNameCache because we can |