diff --git a/lb/proxy.ts b/lb/proxy.ts index 06cc6faa6..108435663 100644 --- a/lb/proxy.ts +++ b/lb/proxy.ts @@ -176,7 +176,7 @@ export async function proxyToR2( headers.set("content-length", object.size.toString()); if (!("body" in object)) { - return new Response(null, { status: 412, headers }); + return new Response(null, { status: 304, headers }); } const response = new Response(object.body, { headers });