You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use new Request with fetch to make a request, the value of request.isFetch is not true but undefined.
constreq=newRequest(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.
When I use
new Request
with fetch to make a request, the value ofrequest.isFetch
is nottrue
but undefined.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.xhook/src/patch/fetch.ts
Lines 64 to 69 in 950c7f4
The text was updated successfully, but these errors were encountered: