diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 711b4cc5af7..d19304907b3 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -2260,6 +2260,10 @@ export class ConversationModel extends window.Backbone.Model< return false; } + if (!this.isGroupV1() && !this.isPrivate()) { + return false; + } + return !this.get('profileSharing'); }