Merge commit '3b181291cc91a536ea2b418171f184cf83bb9dce' into fluffychat-merge-2

This commit is contained in:
ggurdin 2026-02-05 15:58:21 -05:00
commit 12b04e5074
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -292,7 +292,7 @@ class MessageContent extends StatelessWidget {
}
var html = AppSettings.renderHtml.value && event.isRichMessage
? event.formattedText
: event.body;
: event.body.replaceAll('<', '&lt;').replaceAll('>', '&gt;');
if (event.messageType == MessageTypes.Emote) {
html = '* $html';
}