diff options
Diffstat (limited to 'src/hypixel.ts')
-rw-r--r-- | src/hypixel.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/hypixel.ts b/src/hypixel.ts index e2d0e6b..6c19a69 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -75,7 +75,11 @@ export async function fetchUser({ user, uuid, username }: UserAny, included: Inc if (!uuid) { // If the uuid isn't provided, get it uuid = await cached.uuidFromUser(user || username) - } + } + if (!uuid) { + // the user doesn't exist. + return null + } const includePlayers = included.includes('player') const includeProfiles = included.includes('profiles') |