From e32387d9063c7abef2c2da00a100d4a06a4a3a32 Mon Sep 17 00:00:00 2001 From: nutty Date: Sun, 10 May 2026 21:01:09 +1000 Subject: [PATCH] Fixed Twitch Watch Streaks showing incorrectly --- multichat-overlay/script.js | 1 - 1 file changed, 1 deletion(-) diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js index 3f12e31..c1cdd15 100644 --- a/multichat-overlay/script.js +++ b/multichat-overlay/script.js @@ -1247,7 +1247,6 @@ async function TwitchWatchStreak(data) { // TODO: Streamer.bot v1.0.5-alpha3 changed the data sent with this event, so for backwards compatibility we need to check for both the old and new properties const displayName = data.displayName ?? data.user.name; const watchStreak = data.watchStreak ?? data.streak_count; - const message = RenderMessageWithEmotesHTML(data.message, data.emotes); titleDiv.innerText = `${displayName} is currently on a ${watchStreak} stream streak! `; contentDiv.innerHTML = ConstructMessageFromParts(data.parts);