mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #23084 from owncloud/fix_23067
Fix MKCOL for IE11 as well
This commit is contained in:
commit
b3c1379b8c
1 changed files with 6 additions and 1 deletions
|
|
@ -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 a new issue