From ce0e9b3846d67b760617e51858574552bf6d7768 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 15 Jun 2026 02:20:16 +1000 Subject: [PATCH] fix(control): release upload field name 'file' to match ivctl multer (was 'release') Co-Authored-By: Claude Opus 4.8 --- public/views/control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/views/control.js b/public/views/control.js index bcc8284..3e532fc 100644 --- a/public/views/control.js +++ b/public/views/control.js @@ -178,7 +178,7 @@ async function renderReleases(panel) { if (!fileInput.files?.[0]) return notify(upMsg, 'pick a tarball first', false); if (!verInput.value.trim()) return notify(upMsg, 'version required', false); const fd = new FormData(); - fd.append('release', fileInput.files[0]); + fd.append('file', fileInput.files[0]); fd.append('version', verInput.value.trim()); fd.append('notes', notesInput.value); notify(upMsg, 'uploading…', true);