-
Notifications
You must be signed in to change notification settings - Fork 155
Open
Description
When I use new Request with fetch to make a request, the value of request.isFetch is not true but undefined.
const req = new Request(url);
fetch(req);By checking the source code, I saw that isFetch was added to the initialized options, but when options was reassigned, you forgot to reassign the isFetch attribute.
Lines 64 to 69 in 950c7f4
| options = { | |
| ...requestObj, | |
| ...init, | |
| headers: prevHeaders, | |
| acceptedRequest: true, | |
| }; |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels