auto refresh the player data when claiming a profile
Some checks are pending
Deploy Website / deploy (push) Waiting to run
Deploy Backend / deploy (push) Successful in 3m33s

This commit is contained in:
Lee
2024-10-09 15:18:42 +01:00
parent 580665b2f6
commit 094e030f11
4 changed files with 15 additions and 4 deletions

View File

@ -97,7 +97,9 @@ export async function getScoreSaberPlayerFromToken(
const { statistics: history } = await ky
.get<{
statistics: { [key: string]: PlayerHistory };
}>(`${apiUrl}/player/history/${token.id}${playerIdCookie == token.id ? "?createIfMissing=true" : ""}`)
}>(
`${apiUrl}/player/history/${token.id}${playerIdCookie && playerIdCookie == token.id ? "?createIfMissing=true" : ""}`
)
.json();
if (history === undefined || Object.entries(history).length === 0) {
console.log("Player has no history, using fallback");