Removed Content-Type header from upload test because it triggered bugs in some browsers

This commit is contained in:
adolfintel 2019-02-14 09:13:38 +01:00
parent 217421b1cf
commit e01f4fa40b
2 changed files with 3 additions and 7 deletions

View file

@ -478,9 +478,7 @@ function ulTest(done) {
try{
xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
}catch(e){}
try{
xhr[i].setRequestHeader("Content-Type", "application/octet-stream"); //force content-type to application/octet-stream in case the server misinterprets it
}catch(e){}
//No Content-Type header in MPOT branch because it triggers bugs in some browsers
xhr[i].send(reqsmall);
} else {
// REGULAR version, no workaround
@ -516,9 +514,7 @@ function ulTest(done) {
try{
xhr[i].setRequestHeader("Content-Encoding", "identity"); // disable compression (some browsers may refuse it, but data is incompressible anyway)
}catch(e){}
try{
xhr[i].setRequestHeader("Content-Type", "application/octet-stream"); //force content-type to application/octet-stream in case the server misinterprets it
}catch(e){}
//No Content-Type header in MPOT branch because it triggers bugs in some browsers
xhr[i].send(req);
}
}.bind(this),

File diff suppressed because one or more lines are too long