Skip to content
Open
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
Revert "Use duplex: 'half'"
This reverts commit 9a2ef7e.
  • Loading branch information
thomashoneyman committed Aug 6, 2023
commit 7d0a41454ea42333cf446eaa0ad6ed2fd9707bdb
2 changes: 1 addition & 1 deletion src/Fetch/Core/Request.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function _unsafeNew(url, options) {
try {
return new Request(url, { ...options, duplex: 'half' });
return new Request(url, options);
} catch (e) {
console.error(e);
throw e;
Expand Down