From e12521e6faec2abfdad9ebb4a1e65ec157f99349 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Sat, 5 Apr 2025 21:36:39 +0100 Subject: [PATCH] fix: make studio url width of 512 --- src/app/api/submit/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/submit/route.ts b/src/app/api/submit/route.ts index ac13a74..77194ec 100644 --- a/src/app/api/submit/route.ts +++ b/src/app/api/submit/route.ts @@ -101,7 +101,7 @@ export async function POST(request: Request) { // Download the image of the Mii let studioBuffer: Buffer; try { - const studioUrl = mii.studioUrl({ width: 128 }); + const studioUrl = mii.studioUrl({ width: 512 }); const studioResponse = await fetch(studioUrl); if (!studioResponse.ok) {