Fix for MKCOL in edge
@ -172,7 +172,13 @@ dav.Client.prototype = {
for(ii in headers) {
xhr.setRequestHeader(ii, headers[ii]);
}
xhr.send(body);
// Work around for edge
if (body === undefined) {
xhr.send();
} else {
return new Promise(function(fulfill, reject) {