fix
Some checks failed
Deploy Backend / deploy (push) Successful in 4m14s
Deploy Website / deploy (push) Failing after 2m42s

This commit is contained in:
Lee
2024-10-15 19:43:23 +01:00
parent 970ab22e2f
commit f2ef170f01
14 changed files with 33 additions and 32 deletions

View File

@ -11,6 +11,6 @@ export default class ImageController {
}),
})
public async getOpenGraphImage({ params: { id } }: { params: { id: string } }) {
return await ImageService.generateOpenGraphImage(id);
return await ImageService.generatePlayerImage(id);
}
}

View File

@ -1,7 +1,7 @@
import { ImageResponse } from "@vercel/og";
import { scoresaberService } from "@ssr/common/service/impl/scoresaber";
import { formatNumberWithCommas, formatPp } from "website/src/common/number-utils";
import React from "react";
import { formatNumberWithCommas, formatPp } from "@ssr/common/utils/number-utils";
export class ImageService {
/**
@ -9,7 +9,7 @@ export class ImageService {
*
* @param id the player's id
*/
public static async generateOpenGraphImage(id: string) {
public static async generatePlayerImage(id: string) {
const player = await scoresaberService.lookupPlayer(id);
if (player == undefined) {
return undefined;