diff options
author | szaimen <szaimen@e.mail.de> | 2021-08-08 20:17:09 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2021-08-08 20:17:09 +0200 |
commit | b11741cf588d7aa7a7dc5f12a07a9e23169675a4 (patch) | |
tree | 856d9cd3787e8cb66e19b2658f3005bb11cdd6e4 /apps/files | |
parent | 27847a92501d9b434589030c899bcb0561414842 (diff) | |
download | nextcloud-server-b11741cf588d7aa7a7dc5f12a07a9e23169675a4.tar.gz nextcloud-server-b11741cf588d7aa7a7dc5f12a07a9e23169675a4.zip |
Change the concurrent upload limit to less than 10
Signed-off-by: szaimen <szaimen@e.mail.de>
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 |