Fix mention rendering bug.

This commit is contained in:
Cody Henthorne 2022-03-15 10:32:59 -04:00
parent 1c79840684
commit cf857e109a

View file

@ -52,7 +52,7 @@ public class ConversationMessage {
this.body = null;
}
if (!this.mentions.isEmpty() && this.body != null && this.messageRecord.getRecipient().isGroup()) {
if (!this.mentions.isEmpty() && this.body != null) {
MentionAnnotation.setMentionAnnotations(this.body, this.mentions);
}