fix player embed image not updating (maybe?)
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 47s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m23s

This commit is contained in:
Lee
2024-10-27 13:30:51 +00:00
parent d086e922c4
commit 4be0b072b2
4 changed files with 17 additions and 2 deletions

View File

@ -14,6 +14,7 @@ import { fetchPlayerScores } from "@ssr/common/utils/score-utils";
import PlayerScoresResponse from "@ssr/common/response/player-scores-response";
import { getScoreSaberPlayerFromToken } from "@ssr/common/token-creators";
import { cache } from "react";
import { randomString } from "@ssr/common/utils/string.util";
const UNKNOWN_PLAYER = {
title: "ScoreSaber Reloaded - Unknown Player",
@ -91,7 +92,7 @@ export async function generateMetadata(props: Props): Promise<Metadata> {
description: `Click here to view the scores for ${player.name}!`,
images: [
{
url: `${Config.apiUrl}/image/player/${player.id}`,
url: `${Config.apiUrl}/image/player/${player.id}?id=${randomString(8)}`,
},
],
},