aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2017-11-10 15:35:58 +0100
committerGitHub <noreply@github.com>2017-11-10 15:35:58 +0100
commit1a2f9fe678fce329c37b69df47164a2eddead8f1 (patch)
tree0648f61ec8e3f2ff9c526a90e7858a28a9829764 /apps/files/js/filelist.js
parentd3e7dd19928e90c87a4732a9c28020336dab57c7 (diff)
parentcd8d13b9e6e7bbf0e17f31c60021804ac4772939 (diff)
downloadnextcloud-server-1a2f9fe678fce329c37b69df47164a2eddead8f1.tar.gz
nextcloud-server-1a2f9fe678fce329c37b69df47164a2eddead8f1.zip
Merge pull request #7056 from nextcloud/oc-28415-enable-chunking-in-authenticated-web-upload
[oc] Enable chunking for bigger files in authenticated web upload
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 12caa9da55f..af5e9c013f0 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -357,7 +357,8 @@
this._uploader = new OC.Uploader($uploadEl, {
fileList: this,
filesClient: this.filesClient,
- dropZone: $('#content')
+ dropZone: $('#content'),
+ maxChunkSize: options.maxChunkSize
});
this.setupUploadEvents(this._uploader);