fix server embed
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
This commit is contained in:
@ -16,6 +16,7 @@ type Params = {
|
||||
|
||||
export async function generateMetadata({ params: { id } }: Params): Promise<Metadata> {
|
||||
try {
|
||||
// No id provided
|
||||
if (!id || id.length === 0) {
|
||||
return generateEmbed({
|
||||
title: "Player Lookup",
|
||||
@ -35,6 +36,7 @@ export async function generateMetadata({ params: { id } }: Params): Promise<Meta
|
||||
image: headPartUrl,
|
||||
});
|
||||
} catch (err) {
|
||||
// An error occurred
|
||||
return generateEmbed({
|
||||
title: "Player Not Found",
|
||||
description: (err as McUtilsAPIError).message,
|
||||
|
Reference in New Issue
Block a user