diff options
author | szaimen <szaimen@e.mail.de> | 2021-08-09 18:02:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 18:02:25 +0200 |
commit | d53a6dac31ec7d9ca489146559353711286fe2b6 (patch) | |
tree | bf3bfe7cc553337705576f961345f9ff45d404ce /apps | |
parent | 59b98c1534fefe69bfdc18e19994ea9d7c5d2151 (diff) | |
parent | fc20b0cab81df1702a25450c77ff89c3f95d417c (diff) | |
download | nextcloud-server-d53a6dac31ec7d9ca489146559353711286fe2b6.tar.gz nextcloud-server-d53a6dac31ec7d9ca489146559353711286fe2b6.zip |
Merge pull request #28354 from nextcloud/backport/28352/stable21
[stable21] Change the concurrent upload limit to less than 10
Diffstat (limited to 'apps')
-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 178cda856a6..6cf5ae74b21 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 |