fix
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user