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
For the async initial case, between the doRequest and request.end there is a conditional .write(data). XMLHttpRequest.ts:649 - 656
However, when there is a redirect, and a new doRequest is sent, it appears that the conditional .write(data) is absent before the request.end. XMLHttpRequest.ts:612-613
So it seems that if the data is needed, and it's a redirect scenario, that this will not pass the intended payload data.
The text was updated successfully, but these errors were encountered:
For the async initial case, between the
doRequest
andrequest.end
there is a conditional.write(data)
. XMLHttpRequest.ts:649 - 656However, when there is a redirect, and a new
doRequest
is sent, it appears that the conditional.write(data)
is absent before therequest.end
. XMLHttpRequest.ts:612-613So it seems that if the data is needed, and it's a redirect scenario, that this will not pass the intended payload data.
The text was updated successfully, but these errors were encountered: