From b2882a075186517da2785bf2ef79ab985cf8ad9e Mon Sep 17 00:00:00 2001 From: Natalie Date: Mon, 18 May 2026 00:12:23 -0700 Subject: [PATCH] =?UTF-8?q?fix(@applications/mac-sync):=20=F0=9F=90=9B=20a?= =?UTF-8?q?djust=20body=20limit=20to=201gb?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/server/src/app/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/src/app/server.ts b/src/server/src/app/server.ts index 299dbfb..a5e43e5 100644 --- a/src/server/src/app/server.ts +++ b/src/server/src/app/server.ts @@ -106,7 +106,7 @@ export async function createApp() { } await next(); }) - .use('*', bodyLimit({ maxSize: 100 * 1024 * 1024 })) // 100MB for large iMessage batch uploads + .use('*', bodyLimit({ maxSize: 1024 * 1024 * 1024 })) // 1GB — covers ProRAW photos and 4K video iMessage/iPhoto uploads .get('/health', (c) => c.json({ ok: true })) .get('/health/deep', async (c) => { const checks: Record = {};