use the server preview from the api in the server route for embeds
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 3m25s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 3m25s
This commit is contained in:
@ -82,18 +82,14 @@ export async function generateMetadata({ params: { platform, hostname } }: Param
|
||||
|
||||
try {
|
||||
const server = await getServer(platform, hostname);
|
||||
const { hostname: serverHostname, players } = server;
|
||||
|
||||
const favicon = getFavicon(platform, server);
|
||||
|
||||
let description = `There is ${formatNumber(players.online)}/${formatNumber(players.max)} players connected!\n\n`;
|
||||
description += "Click to view more information about the server.";
|
||||
const { hostname: serverHostname } = server;
|
||||
|
||||
return generateEmbed({
|
||||
title: `${serverHostname} ${capitalizeFirstLetter(platform)} Server`,
|
||||
embedTitle: `${capitalizeFirstLetter(platform)} Server: ${serverHostname}`,
|
||||
description: description,
|
||||
image: favicon,
|
||||
description: "Click to view more information about the server.",
|
||||
image: `${config.apiEndpoint}/server/${platform}/preview/${serverHostname}`,
|
||||
cardType: "summary_large_image",
|
||||
});
|
||||
} catch (err) {
|
||||
// An error occurred
|
||||
|
Reference in New Issue
Block a user