diff --git a/.bauke/scripts/tauon-controls.ts b/.bauke/scripts/tauon-controls.ts index 3b5e4cc..4e62173 100644 --- a/.bauke/scripts/tauon-controls.ts +++ b/.bauke/scripts/tauon-controls.ts @@ -101,7 +101,7 @@ async function getStatus(): Promise { async function getCurrentSong(): Promise { const status = await getStatus(); if (status.status === "playing") { - console.log(`${status.artist} - ${status.title}`); + console.log(`${status.artist} - ${status.title}`.replaceAll("&", "&")); } }