Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsctx committed Oct 28, 2024
1 parent 5b38d4d commit 05c07ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/web/fetch/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ class Request {
// 3. Let clonedRequestObject be the result of creating a Request object,
// given clonedRequest, this’s headers’s guard, and this’s relevant Realm.
// 4. Make clonedRequestObject’s signal follow this’s signal.
const signal = AbortSignal.any([this.signal])
const signal = AbortSignal.any([this.#signal])

// 4. Return clonedRequestObject.
return fromInnerRequest(clonedRequest, this.#dispatcher, signal, getHeadersGuard(this.#headers))
Expand Down

0 comments on commit 05c07ea

Please sign in to comment.