Use full file path name in tag editor filename field

This commit is contained in:
Armin 2026-07-09 12:29:20 +02:00
commit 26a45a73ef

View file

@ -1324,7 +1324,7 @@ function openTagEditor() {
if (idx < 0) { showStatus('No track selected.', 'error'); return; } if (idx < 0) { showStatus('No track selected.', 'error'); return; }
const t = tracks[idx]; const t = tracks[idx];
tagEditorOverlay.dataset.idx = idx; tagEditorOverlay.dataset.idx = idx;
tagFilename.value = t.filename || ''; tagFilename.value = t.path || '';
tagName.value = t.name || ''; tagName.value = t.name || '';
tagArtist.value = t.artist || ''; tagArtist.value = t.artist || '';
tagAlbum.value = t.album || ''; tagAlbum.value = t.album || '';