fix: make studio url width of 512

This commit is contained in:
trafficlunar 2025-04-05 21:36:39 +01:00
parent 7fd01c3d2f
commit e12521e6fa

View file

@ -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) {