diff options
author | szaimen <szaimen@e.mail.de> | 2021-08-08 20:17:09 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-08-09 08:33:53 +0000 |
commit | 6acf1a5493e620c101dfb74cbca7dbe9039f0060 (patch) | |
tree | 1e09775ff4bc377a4adb5b3c19def224f00d0a6b | |
parent | faef6db11a4ae15e13e1511a0ea78b93a6d16432 (diff) | |
download | nextcloud-server-6acf1a5493e620c101dfb74cbca7dbe9039f0060.tar.gz nextcloud-server-6acf1a5493e620c101dfb74cbca7dbe9039f0060.zip |
Change the concurrent upload limit to less than 10
Signed-off-by: szaimen <szaimen@e.mail.de>
-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 |