diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 274e9f4513..32d78966a6 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -2727,11 +2727,17 @@ export class ConversationModel extends window.Backbone return this.get('verified') === this.verifiedEnum.VERIFIED; } - if (!this.contactCollection?.length) { + const contacts = this.contactCollection; + + if (contacts == null || contacts.length === 0) { return false; } - return this.contactCollection?.every(contact => { + if (contacts.length === 1 && isMe(contacts.first()?.attributes)) { + return false; + } + + return contacts.every(contact => { if (isMe(contact.attributes)) { return true; }