ソースを参照

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年前
コミット
19347187d8
1個のファイルの変更6行の追加1行の削除
  1. 6
    1
      core/js/files/iedavclient.js

+ 6
- 1
core/js/files/iedavclient.js ファイルの表示

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


読み込み中…
キャンセル
保存