From 2d518abc1931ee06213cc59b78aa03fd1a3dc3fc Mon Sep 17 00:00:00 2001 From: Araxeus <78568641+Araxeus@users.noreply.github.com> Date: Sat, 23 Oct 2021 16:26:45 +0300 Subject: [PATCH] remove leftover console.log --- providers/song-info.js | 1 - 1 file changed, 1 deletion(-) 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("-"); };