diff --git a/Session/Shared/ConversationCell.swift b/Session/Shared/ConversationCell.swift index 32ae0d4bd..6f8a23afe 100644 --- a/Session/Shared/ConversationCell.swift +++ b/Session/Shared/ConversationCell.swift @@ -200,7 +200,7 @@ final class ConversationCell : UITableViewCell { unreadCountLabel.text = unreadCount < 100 ? "\(unreadCount)" : "99+" let fontSize = (unreadCount < 100) ? Values.verySmallFontSize : 8 unreadCountLabel.font = .boldSystemFont(ofSize: fontSize) - hasMentionView.isHidden = !threadViewModel.hasUnreadMentions + hasMentionView.isHidden = !(threadViewModel.hasUnreadMentions && thread.isGroupThread()) profilePictureView.update(for: thread) displayNameLabel.text = getDisplayName() timestampLabel.text = DateUtil.formatDate(forDisplay: threadViewModel.lastMessageDate)