Remove added 1 if reply with emoji (#443)

In reply message.text contains emoji, and message.emoji is 1.
This commit is contained in:
Alexkurd
2025-11-13 23:15:35 +03:00
committed by GitHub
parent 05efbc5f20
commit 382e2609c9

View File

@@ -308,7 +308,7 @@ export function buildMessageBody({ message, escapeHtml, renderEmojiHtml }) {
}
}
const emoji = normaliseEmojiValue(message.emoji);
if (emoji) {
if (emoji && emoji!=='1') {
segments.push(renderEmojiHtml(emoji));
}