update embeds
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m0s

This commit is contained in:
Lee
2024-04-17 17:26:10 +01:00
parent ace88be518
commit 6d3663ccb9
2 changed files with 13 additions and 1 deletions

View File

@ -16,6 +16,12 @@ type Params = {
export async function generateMetadata({ params: { id } }: Params): Promise<Metadata> {
try {
if (!id || id.length === 0) {
return generateEmbed({
title: "Player Not Found",
description: "Click to lookup a player.",
});
}
const player = await getPlayer(id);
const { username, uniqueId, skin } = player;