diff --git a/src/utils/request.js b/src/utils/request.js index 5114e88..0de3b86 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -80,7 +80,7 @@ function request(url, type, withCredentials, headers) { responseXML = this.responseXML; } - if (this.status === 200 || responseXML ) { //-- Firefox is reporting 0 for blob urls + if (this.status === 200 || this.status === 0 || responseXML) { //-- Firefox is reporting 0 for blob urls var r; if (!this.response && !responseXML) {