From 4f66ecf500b510bccdd32ea3b4248648c38d8ebc Mon Sep 17 00:00:00 2001 From: nutty Date: Sat, 28 Feb 2026 03:08:51 +1100 Subject: [PATCH 1/5] =?UTF-8?q?=E2=80=A2=20Fixed=20Twemoji=20rendering=20?= =?UTF-8?q?=E2=80=A2=20Fixed=20'undefined'=20Kick=20channel=20point=20rede?= =?UTF-8?q?ems?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .common/utils/helpers.js | 2 ++ multichat-overlay/script.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.common/utils/helpers.js b/.common/utils/helpers.js index cb51946..c89b721 100644 --- a/.common/utils/helpers.js +++ b/.common/utils/helpers.js @@ -276,6 +276,8 @@ function ConstructMessageFromParts(parts) { return ` ${part.text} `; if (!part.type) return part.text; + if (part.source == 'Twemoji') + return part.text; switch (part.type) { diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js index 86b982e..437e1b5 100644 --- a/multichat-overlay/script.js +++ b/multichat-overlay/script.js @@ -2616,7 +2616,7 @@ async function KickRewardRedeemed(data) { // Set the text const username = data.username; const rewardName = data.reward_title; - const userInput = data.userInput; + const userInput = data.user_input; titleDiv.innerHTML = `${username} redeemed ${rewardName}`; contentDiv.innerText = `${userInput}`; From 7cc6a093fe680b5be01cb2ea7941db80f9551f1d Mon Sep 17 00:00:00 2001 From: nutty Date: Thu, 19 Mar 2026 22:46:12 +1100 Subject: [PATCH 2/5] Updated all relative references to '/.common/' to absolute paths --- .common/core/settings-core/index.html | 4 ++-- .common/core/widget-dock-core/index.html | 6 +++--- .templates/obs-dock/contents/index.html | 2 +- .templates/obs-dock/index.html | 4 ++-- .templates/obs-dock/script.js | 2 +- clock-widget/settings/index.html | 2 +- clock-widget/settings/script.js | 2 +- horizontal-chat/index.html | 2 +- horizontal-chat/settings/index.html | 2 +- horizontal-chat/settings/script.js | 2 +- multichat-overlay/index.html | 2 +- multichat-overlay/settings/index.html | 2 +- multichat-overlay/settings/script.js | 2 +- multistream-alerts/index.html | 2 +- multistream-alerts/settings/index.html | 2 +- multistream-alerts/settings/script.js | 2 +- multistream-title-updater/contents/index.html | 2 +- multistream-title-updater/index.html | 4 ++-- multistream-title-updater/script.js | 2 +- obs-info-hud/settings/index.html | 2 +- obs-info-hud/settings/script.js | 2 +- printer-bot/contents/index.html | 4 ++-- printer-bot/index.html | 4 ++-- printer-bot/script.js | 2 +- scumbag-sub-goal-widget/settings/index.html | 2 +- scumbag-sub-goal-widget/settings/script.js | 2 +- simple-twitch-metrics/settings/index.html | 2 +- simple-twitch-metrics/settings/script.js | 2 +- twitch-ad-countdown-timer/index.html | 2 +- twitch-ad-countdown-timer/settings/index.html | 2 +- twitch-ad-countdown-timer/settings/script.js | 2 +- twitch-uptime-widget/settings/index.html | 2 +- twitch-uptime-widget/settings/script.js | 2 +- 33 files changed, 40 insertions(+), 40 deletions(-) diff --git a/.common/core/settings-core/index.html b/.common/core/settings-core/index.html index 96f8b2f..0536497 100644 --- a/.common/core/settings-core/index.html +++ b/.common/core/settings-core/index.html @@ -12,7 +12,7 @@