Skip to content
Merged
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
Updated argument order in writeBuffer function
  • Loading branch information
DarkGL committed Jun 4, 2024
commit 970dde71aaca978cd3fa3cee9425c94d410eee36
4 changes: 2 additions & 2 deletions lib/dispatcher/client-h2.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,12 +491,12 @@ function writeH2 (client, request) {
writeBuffer(
abort,
stream,
expectsPayload,
body,
client,
request,
client[kSocket],
contentLength,
body
expectsPayload
)
} else if (util.isBlobLike(body)) {
if (typeof body.stream === 'function') {
Expand Down