From 26a45a73ef03fc5fba1278d6c807d458b62d991b Mon Sep 17 00:00:00 2001 From: Armin Date: Thu, 9 Jul 2026 12:29:20 +0200 Subject: [PATCH] Use full file path name in tag editor filename field --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f82e676..6ff0cc9 100644 --- a/index.html +++ b/index.html @@ -1324,7 +1324,7 @@ function openTagEditor() { if (idx < 0) { showStatus('No track selected.', 'error'); return; } const t = tracks[idx]; tagEditorOverlay.dataset.idx = idx; - tagFilename.value = t.filename || ''; + tagFilename.value = t.path || ''; tagName.value = t.name || ''; tagArtist.value = t.artist || ''; tagAlbum.value = t.album || '';