From 4428d91feb164145bd709a9a2e3653edf3135e37 Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Wed, 22 Jul 2026 09:10:54 +0000 Subject: [PATCH] debug: add console.log to handleUpload entry point --- frontend/templates/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/templates/index.html b/frontend/templates/index.html index e6ba601..131b0b5 100644 --- a/frontend/templates/index.html +++ b/frontend/templates/index.html @@ -137,6 +137,7 @@ async function startSession(e) { btn.disabled = false; } async function handleUpload(formData) { + console.log('handleUpload called, file:', formData.get('source_file')?.name); return new Promise((resolve) => { const xhr = new XMLHttpRequest(); const file = formData.get('source_file');