diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2019-01-29 08:51:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 08:51:38 +0100 |
commit | 8fcb9fcfdc0f4322154d31bba46b89464dcd32a5 (patch) | |
tree | dd67ecd7f1f92832cfdad5e3f2a402b462cb4835 /apps/files/js/file-upload.js | |
parent | 198a45ff75c64d38c1ccb6bd903ee55b446177b3 (diff) | |
parent | f99ce0d546c8332bb46807eed21fcdf7d5d0ab71 (diff) | |
download | nextcloud-server-8fcb9fcfdc0f4322154d31bba46b89464dcd32a5.tar.gz nextcloud-server-8fcb9fcfdc0f4322154d31bba46b89464dcd32a5.zip |
Merge pull request #13855 from tomasz-grobelny/faster_file_upload
Throttle getstoragestats.php calls and allow simultaneous uploads
Diffstat (limited to 'apps/files/js/file-upload.js')
-rw-r--r-- | apps/files/js/file-upload.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index bc1a4b36794..9f1912d590d 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -845,7 +845,8 @@ OC.Uploader.prototype = _.extend({ type: 'PUT', dropZone: options.dropZone, // restrict dropZone to content div autoUpload: false, - sequentialUploads: true, + sequentialUploads: false, + limitConcurrentUploads: 10, //singleFileUploads is on by default, so the data.files array will always have length 1 /** * on first add of every selection |