Skip to content

Commit

Permalink
chore: omit https/2 pseudo headers
Browse files Browse the repository at this point in the history
Signed-off-by: Logan McAnsh <[email protected]>
  • Loading branch information
mcansh authored Sep 13, 2024
1 parent 22b1eff commit 3385619
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/remix-fastify/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export function createRemixHeaders(
let headers = new Headers();

for (let [key, values] of Object.entries(requestHeaders)) {
if (key.startsWith(":")) continue;
if (values) {
if (Array.isArray(values)) {
for (let value of values) {
Expand Down

0 comments on commit 3385619

Please sign in to comment.