Skip to content

Commit

Permalink
Fix not parsing emotes for youtube
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaserlang committed Oct 31, 2024
1 parent 4f3d8c8 commit ee23a25
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tbot/web/ui/live_chat/components/chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export function Chat({ channelId }) {
},
})
).toHTML(1, true, false);
} else {
msg.message = parseEmoteMessage(msg.message);
}
setMessageHistory((prevMessages) => {
const updatedMessages = [...prevMessages, msg];
Expand Down

0 comments on commit ee23a25

Please sign in to comment.