diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts index f2d382a48..197b579ba 100644 --- a/ts/models/conversation.ts +++ b/ts/models/conversation.ts @@ -1649,6 +1649,10 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> { throw new Error('Need to provide either recipientId'); } + if (!this.isApproved()) { + return; + } + if (this.isMe()) { // note to self return;