Fix MKCOL for IE11 as well
Using https://github.com/owncloud/core/pull/22274 we have to patch the iedavclient.js as well.
This commit is contained in:
parent
51072f742e
commit
19347187d8
|
@ -39,7 +39,12 @@
|
|||
for(ii in headers) {
|
||||
xhr.setRequestHeader(ii, headers[ii]);
|
||||
}
|
||||
xhr.send(body);
|
||||
|
||||
if (body === undefined) {
|
||||
xhr.send();
|
||||
} else {
|
||||
xhr.send(body);
|
||||
}
|
||||
|
||||
return new Promise(function(fulfill, reject) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue