diff --git a/src/notification/twitch.ts b/src/notification/twitch.ts index 4160c8b..fd03cfc 100644 --- a/src/notification/twitch.ts +++ b/src/notification/twitch.ts @@ -65,7 +65,7 @@ chatClient.onJoin((channel: string, user: string) => { if (message !== undefined) { try { - chatClient.say(channel, message); + void chatClient.say(channel, message); logger.info('✔ twitch message sent'); } catch (error: unknown) { logger.error("✖ couldn't send twitch message", error);