Fix mention rendering regression.

fork-5.53.8
Cody Henthorne 2022-03-11 14:18:42 -05:00
rodzic 9056371c41
commit 2eb8df347e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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