diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-08-09 09:56:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 09:56:08 +0200 |
commit | c5c377f3f51c4ee3a33ea19a2302af31645579c6 (patch) | |
tree | a4f2b61920e35c02072597f6fc2d758167e2b96c /apps/files | |
parent | 410382f76512f378738727c594a9bb17c0d1e0da (diff) | |
parent | b11741cf588d7aa7a7dc5f12a07a9e23169675a4 (diff) | |
download | nextcloud-server-c5c377f3f51c4ee3a33ea19a2302af31645579c6.tar.gz nextcloud-server-c5c377f3f51c4ee3a33ea19a2302af31645579c6.zip |
Merge pull request #28352 from nextcloud/enh/18537/fix-concurrent-upload-limit
Change the concurrent upload limit to less than 10
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/file-upload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 919a5314f6b..ec017ceb08e 100644 --- a/apps/files/js/file-upload.js +++ b/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 |