Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Not include :status in the h2 fetch. #2416

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: check pseudo-header
  • Loading branch information
tsctx committed Nov 9, 2023
commit e5ab3d5f8edf81d9950cd570c9c881cc4b27a94f
6 changes: 4 additions & 2 deletions lib/fetch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2002,7 +2002,8 @@ async function httpNetworkFetch (
location = val
}

headers.append(key, val)
// Note: Not allow pseudo-header for H2. e.g. `:status`
if (key.charCodeAt(0) !== 58) headers.append(key, val)
}
} else {
const keys = Object.keys(headersList)
Expand All @@ -2016,7 +2017,8 @@ async function httpNetworkFetch (
location = val
}

headers.append(key, val)
// Note: Not allow pseudo-header for H2. e.g. `:status`
if (key.charCodeAt(0) !== 58) headers.append(key, val)
}
}

Expand Down