Skip to content

Commit

Permalink
[js] Fix the header parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Mar 18, 2024
1 parent 199e89a commit d39f500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ContinueRequestParameters {
headerList.push(Object.fromEntries(header.asMap()))
})

this.#map.set('cookies', headerList)
this.#map.set('headers', headerList)
return this
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ContinueResponseParameters {
headerList.push(Object.fromEntries(header.asMap()))
})

this.#map.set('cookies', headerList)
this.#map.set('headers', headerList)
return this
}

Expand Down

0 comments on commit d39f500

Please sign in to comment.