add cool og image for player embed
All checks were successful
Deploy Backend / deploy (push) Successful in 3m39s
Deploy Website / deploy (push) Successful in 6m47s

This commit is contained in:
Lee
2024-10-15 18:59:13 +01:00
parent 005e05d8fb
commit ef634194b8
6 changed files with 83 additions and 29 deletions

View File

@ -123,6 +123,7 @@ export class PlayerService {
*/
public static async trackScore({ score, leaderboard }: ScoreSaberPlayerScoreToken) {
const playerId = score.leaderboardPlayerInfo.id;
const playerName = score.leaderboardPlayerInfo.name;
const player: PlayerDocument | null = await PlayerModel.findById(playerId);
// Player is not tracked, so ignore the score.
if (player == undefined) {
@ -151,7 +152,7 @@ export class PlayerService {
await player.save();
console.log(
`Updated scores set statistic for "${player.id}", scores today: ${scores.rankedScores} ranked, ${scores.unrankedScores} unranked`
`Updated scores set statistic for "${playerName}"(${playerId}), scores today: ${scores.rankedScores} ranked, ${scores.unrankedScores} unranked`
);
}
}