From fc380f7d08dc71534bef2f62f315a5a218e707f7 Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Thu, 23 Jul 2026 09:51:30 +0000 Subject: [PATCH] fix: add session_id to copyVM payload (Copy flow was missing it) --- frontend/templates/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/templates/index.html b/frontend/templates/index.html index 985811c..4b3592a 100644 --- a/frontend/templates/index.html +++ b/frontend/templates/index.html @@ -419,6 +419,7 @@ async function copyVM(jobId, vmid, sourceFilename) { if (diskGb) payload.append('target_disk_size_gb', diskGb); payload.append('auto_detect_boot', 'true'); payload.append('boot_type', 'uefi'); + payload.append('session_id', window.VM_BENCH_SID || ''); try { const resp = await fetch('/session/confirm', { method: 'POST', body: payload }); const html = await resp.text();