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:
Roeland Jago Douma 2016-03-10 13:06:02 +01:00
parent 51072f742e
commit 19347187d8
1 changed files with 6 additions and 1 deletions

View File

@ -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) {