1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-03 03:40:56 +00:00
* Fixed: Emoji appearing very large in some situations.
* Fixed: Callouts not being removed correctly.
* Fixed: Periodically detect and remove orphan chat message nodes.
* Fixed: Bug rendering re-sub messages in some situations where a message wasn't already tokenized.
This commit is contained in:
SirStendec 2024-12-30 13:57:51 -05:00
parent dc1493c0b6
commit 15c33281ad
4 changed files with 107 additions and 28 deletions

View file

@ -240,7 +240,7 @@ export default class ChatLine extends Module {
let has_message;
if (setting === 1 && months > 1) {
const tokens = msg.ffz_tokens = msg.ffz_tokens || t.chat.tokenizeMessage(msg, current_user);
const tokens = msg.ffz_tokens = msg.ffz_tokens || this.chat.tokenizeMessage(msg, current_user);
has_message = tokens.length > 0;
}