fix embed color
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s

This commit is contained in:
Lee 2024-04-18 08:54:13 +01:00
parent e793d0eb39
commit 21e1a0e596
2 changed files with 2 additions and 2 deletions

@ -11,6 +11,6 @@ export async function isValidPlayer(id: string): Promise<boolean> {
await getPlayer(id);
return true;
} catch {
return true;
return false;
}
}

@ -12,6 +12,6 @@ export async function isValidServer(platform: ServerPlatform, query: string): Pr
await getServer(platform, query);
return true;
} catch {
return true;
return false;
}
}