From 598b63ba255d31a1226a9c0ebd6d1a92e4188ff1 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sun, 22 Mar 2026 07:56:25 -0700 Subject: [PATCH] Add missing_lossy_copy to finding type labels and fixable types Adds 'Convert' fix button and 'No Lossy Copy' type label for the lossy converter repair job findings in the Library Maintenance UI. --- webui/static/script.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/static/script.js b/webui/static/script.js index b10b6fd9..04a0d771 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -53871,7 +53871,8 @@ async function loadRepairFindings() { acoustid_no_match: 'No Match', fake_lossless: 'Fake Lossless', duplicate_tracks: 'Duplicate', incomplete_album: 'Incomplete', path_mismatch: 'Path Mismatch', metadata_gap: 'Missing Metadata', - missing_cover_art: 'Missing Art', track_number_mismatch: 'Track Number' + missing_cover_art: 'Missing Art', track_number_mismatch: 'Track Number', + missing_lossy_copy: 'No Lossy Copy' }; // Finding types that have an automated fix action @@ -53883,6 +53884,7 @@ async function loadRepairFindings() { metadata_gap: 'Apply', duplicate_tracks: 'Keep Best', incomplete_album: 'Auto-Fill', + missing_lossy_copy: 'Convert', }; container.innerHTML = items.map(f => {