From 0d9d6a0c7bc70789962cebcad7b6c21f56baf6bb Mon Sep 17 00:00:00 2001 From: Booteille Date: Tue, 12 Nov 2024 14:50:17 +0100 Subject: [PATCH] Fix undefined password --- themes/default/public/js/lufi-up.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/themes/default/public/js/lufi-up.js b/themes/default/public/js/lufi-up.js index f8f5ef6..46953fc 100755 --- a/themes/default/public/js/lufi-up.js +++ b/themes/default/public/js/lufi-up.js @@ -458,7 +458,14 @@ const handleFiles = (files = []) => { document.body.style.cursor = "default"; - startUpload(filesArray, delay, delAtFirstView, isZipped, password); + startUpload( + filesArray, + delay, + delAtFirstView, + isZipped, + undefined, + password + ); } else { lufi .addFilesToArchive(filesArray, archiveEntries)