Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored and Hebilicious committed Jul 2, 2023
1 parent 5632f49 commit 1b5a4f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/runtime/entries/cloudflare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ function normalizeOutgoingHeaders(

for (const [k, v] of Object.entries(headers)) {
if (k === "set-cookie") {
for (const cookie of splitCookiesString(Array.isArray(v) ? v.join(',') : v)) {
for (const cookie of splitCookiesString(
Array.isArray(v) ? v.join(",") : v
)) {
result.append("set-cookie", cookie);
}

Expand Down

0 comments on commit 1b5a4f6

Please sign in to comment.