We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37aa12 commit da090ceCopy full SHA for da090ce
src/adapter/run/routing.ts
@@ -359,7 +359,7 @@ export async function runNextRouting(
359
response = new Response(finalResponse.body, {
360
...finalResponse,
361
headers: {
362
- ...finalResponse.headers,
+ ...Object.fromEntries(finalResponse.headers.entries()),
363
...maybeResponse.headers,
364
},
365
status: maybeResponse.status ?? finalResponse.status ?? 200,
@@ -381,7 +381,7 @@ export async function runNextRouting(
381
382
383
384
385
386
387
0 commit comments