fix avatar and show more data
All checks were successful
deploy / deploy (push) Successful in 2m13s

This commit is contained in:
Lee
2023-10-19 20:31:05 +01:00
parent a86dbe5045
commit d92e5220fd
7 changed files with 114 additions and 25 deletions

View File

@ -1,5 +1,4 @@
import { connectMongo } from "@/database/mongo";
import { PlayerSchema } from "@/database/schemas/player";
import { logger } from "@/logger";
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { ScoresaberPlayerScore } from "@/schemas/scoresaber/playerScore";
@ -55,12 +54,6 @@ export async function getPlayerInfo(
apiOnly = false,
): Promise<ScoresaberPlayer | undefined | null> {
await connectMongo();
const isPlayerInDb = await PlayerSchema.exists({ _id: playerId });
if (isPlayerInDb && !apiOnly) {
const player = await PlayerSchema.findById({ _id: playerId });
return player.scoresaber;
}
const response = await fetchQueue.fetch(
formatString(GET_PLAYER_DATA_FULL, playerId),
);