update the config.json
This commit is contained in:
@ -45,7 +45,7 @@ export async function generateMetadata({ params: { id } }: Params): Promise<Meta
|
||||
const headPartUrl = skin.parts.head;
|
||||
|
||||
return generateEmbed({
|
||||
title: `${username}`,
|
||||
title: `${username}'s Profile`,
|
||||
description: `UUID: ${uniqueId}\n\nClick to view more information about the player.`,
|
||||
image: headPartUrl,
|
||||
});
|
||||
@ -95,7 +95,7 @@ export default async function Page({ params: { id } }: Params): Promise<ReactEle
|
||||
<ContextMenuItem>Copy Player UUID</ContextMenuItem>
|
||||
</CopyButton>
|
||||
|
||||
<CopyButton content={`${config.siteUrl}/player/${id}`}>
|
||||
<CopyButton content={`${config.publicUrl}/player/${id}`}>
|
||||
<ContextMenuItem>Copy Share URL</ContextMenuItem>
|
||||
</CopyButton>
|
||||
</ContextMenuContent>
|
||||
|
@ -44,7 +44,7 @@ function getFavicon(
|
||||
server: CachedJavaMinecraftServer | CachedBedrockMinecraftServer | undefined,
|
||||
): string | undefined {
|
||||
if (server == null || platform === ServerPlatform.Bedrock) {
|
||||
return config.apiUrl + "/server/icon/fallback";
|
||||
return config.apiEndpoint + "/server/icon/fallback";
|
||||
}
|
||||
server = server as CachedJavaMinecraftServer;
|
||||
return server.favicon && server.favicon.url;
|
||||
|
Reference in New Issue
Block a user