Browse Source

Fix MKCOL for IE11 as well

Using https://github.com/owncloud/core/pull/22274 we have to patch the
iedavclient.js as well.
tags/v9.1.0beta1
Roeland Jago Douma 8 years ago
parent
commit
19347187d8
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      core/js/files/iedavclient.js

+ 6
- 1
core/js/files/iedavclient.js 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) {


Loading…
Cancel
Save