Also increase the size for proxy.

This commit is contained in:
Skystryder 2023-01-28 18:00:08 -08:00
parent 72e8d9e1ce
commit 9838ae9680
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ export async function proxyMedia(ctx: Koa.Context) {
let image: IImage;
if ("static" in ctx.query && isConvertibleImage) {
image = await convertToWebp(path, 498, 280);
image = await convertToWebp(path, 996, 560);
} else if ("preview" in ctx.query && isConvertibleImage) {
image = await convertToWebp(path, 200, 200);
image = await convertToWebp(path, 400, 400);
} else if ("badge" in ctx.query) {
if (!isConvertibleImage) {
// 画像でないなら404でお茶を濁す