update embeds
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m0s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m0s
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user