Skip to content

Commit 9a2ef7e

Browse files
Use duplex: 'half'
1 parent 7a4ee12 commit 9a2ef7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fetch/Core/Request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export function _unsafeNew(url, options) {
22
try {
3-
return new Request(url, options);
3+
return new Request(url, { ...options, duplex: 'half' });
44
} catch (e) {
55
console.error(e);
66
throw e;

0 commit comments

Comments
 (0)