Browse Source
Merge pull request #28352 from nextcloud/enh/18537/fix-concurrent-upload-limit
Change the concurrent upload limit to less than 10
pull/25148/head
John Molakvoæ
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
apps/files/js/file-upload.js
|
|
|
@ -902,7 +902,7 @@ OC.Uploader.prototype = _.extend({ |
|
|
|
dropZone: options.dropZone, // restrict dropZone to content div
|
|
|
|
autoUpload: false, |
|
|
|
sequentialUploads: false, |
|
|
|
limitConcurrentUploads: 10, |
|
|
|
limitConcurrentUploads: 4, |
|
|
|
/** |
|
|
|
* on first add of every selection |
|
|
|
* - check all files of originalFiles array with files in dir |
|
|
|
|