remove leftover console.log

This commit is contained in:
Araxeus
2021-10-23 16:26:45 +03:00
parent 978aca1f9a
commit 2d518abc19

View File

@ -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("-");
};