From 30d0d658d8b20d2f78f08c793a5b818c74bf31c2 Mon Sep 17 00:00:00 2001 From: Asaf Bartov Date: Tue, 10 Dec 2024 03:52:43 +0200 Subject: [PATCH] Parallel downloads confound the scan order! --- app/views/tasks/_new_document.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/_new_document.html.haml b/app/views/tasks/_new_document.html.haml index fc90468..7b0f59f 100644 --- a/app/views/tasks/_new_document.html.haml +++ b/app/views/tasks/_new_document.html.haml @@ -12,7 +12,7 @@ $(document).ready(function() { $('#upload_documents').fileupload({ dataType: 'json', - limitConcurrentUploads: 5, + sequentialUploads: true, add: function(e, data) { data.context = $('

') .append($('').text(data.files[0].name)) @@ -36,4 +36,4 @@ }); } }); - }); \ No newline at end of file + });