From 4f66ecf500b510bccdd32ea3b4248648c38d8ebc Mon Sep 17 00:00:00 2001 From: nutty Date: Sat, 28 Feb 2026 03:08:51 +1100 Subject: [PATCH] =?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}`;