diff --git a/scripts/slow-refresh-itunes.js b/scripts/slow-refresh-itunes.js index 498392e..32fb7a5 100644 --- a/scripts/slow-refresh-itunes.js +++ b/scripts/slow-refresh-itunes.js @@ -98,6 +98,10 @@ async function main() { console.log(`${progress} Processing: "${song.title}" by "${song.artist}"`); + const cleanArtist = cleanSearchTerm(song.artist); + const cleanTitle = cleanSearchTerm(song.title); + console.log(` → Searching: "${cleanTitle}" by "${cleanArtist}"`); + // 3. Query iTunes with Retry Logic let year = null; let retries = 0;