We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40efd14 commit 08f8403Copy full SHA for 08f8403
polyfill/XMLHttpRequest.js
@@ -277,7 +277,7 @@ export default class XMLHttpRequest extends XMLHttpRequestEventTarget{
277
_headerReceived = (e) => {
278
log.debug('header received ', this._task.taskId, e)
279
this.responseURL = this._url
280
- if(e.state === "2") {
+ if(e.state === "2" && e.taskId === this._task.taskId) {
281
this._responseHeaders = e.headers
282
this._statusText = e.status
283
this._status = Math.floor(e.status)
0 commit comments