Skip to content

Commit

Permalink
Merge pull request #28352 from nextcloud/enh/18537/fix-concurrent-upl…
Browse files Browse the repository at this point in the history
…oad-limit

Change the concurrent upload limit to less than 10
  • Loading branch information
skjnldsv authored Aug 9, 2021
2 parents 410382f + b11741c commit c5c377f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/js/file-upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5c377f

Please sign in to comment.