diff --git a/providers/song-info.js b/providers/song-info.js index d386e23a..f88d4103 100644 --- a/providers/song-info.js +++ b/providers/song-info.js @@ -25,7 +25,6 @@ const getImage = async (src) => { // To find the paused status, we check if the title contains `-` const getPausedStatus = async (win) => { const title = await win.webContents.executeJavaScript("document.title"); - console.log('doc title = ',title) return !title.includes("-"); };