There was an error while loading. Please reload this page.
1 parent 3ee4b30 commit 402e11eCopy full SHA for 402e11e
src/utils/parseHeaders.js
@@ -8,7 +8,7 @@ export default function parseHeaders(rawHeaders) {
8
return null
9
}
10
11
- const unflattened = unflat(rawHeaders, 2)
+ const unflattened = unflat(rawHeaders)
12
13
return fromEntries(unflattened)
14
src/utils/parseMultiValueHeaders.js
@@ -10,7 +10,7 @@ export default function parseMultiValueHeaders(rawHeaders) {
const map = new Map()
15
// eslint-disable-next-line no-restricted-syntax
16
for (const [key, value] of unflattened) {
0 commit comments