From 3169485f335341b9e5fb11416b2c7a5f79c315e6 Mon Sep 17 00:00:00 2001 From: Marc-Andre Ferland Date: Tue, 22 Nov 2022 11:09:47 -0500 Subject: [PATCH] Fixing file drag and drop. --- ui/media/js/dnd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/media/js/dnd.js b/ui/media/js/dnd.js index bb5dfe07..f344863b 100644 --- a/ui/media/js/dnd.js +++ b/ui/media/js/dnd.js @@ -408,7 +408,7 @@ async function parseContent(text) { } async function readFile(file, i) { - console.log(`Event %o reading file[${i}]:${file.name}...`, e) + console.log(`Event %o reading file[${i}]:${file.name}...`) const fileContent = (await file.text()).trim() return await parseContent(fileContent) }