From eb48f19198035804b4e0bad27459ebc120646902 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 14 Jan 2026 15:41:21 +0200 Subject: [PATCH] oops --- index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index 297d281..30300af 100644 --- a/index.js +++ b/index.js @@ -68,15 +68,15 @@ const loop = async () => { ); const { state } = await response.json(); const isLive = state.id === 1; // published - constole.info('Live: ', isLive, currentlyLive) + console.info('Live: ', isLive, currentlyLive) const stateChange = isLive !== globalState.currentlyLive; - constole.info('State change', stateChange) + console.info('State change', stateChange) globalState.currentlyLive = isLive; - constole.info('State: ', state) + console.info('State: ', state) if (stateChange) { if (isLive) { - constole.info('Went live!') + console.info('Went live!') await post({ spoiler_text: 'Stream announcment', status: [ @@ -92,7 +92,7 @@ const loop = async () => { external_link: `https://tube.ebin.club/w/${videoId}`, }); } else { - constole.info('Went offline...') + console.info('Went offline...') await scrobble({ title: 'Stream over', });