From a160fb7963d1104c41346d12df2eab5c3f29a244 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 11 Aug 2022 17:28:55 -0700 Subject: [PATCH] Unarchive conversations when we add a calling event to it --- ts/models/conversations.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 40a8497d78..4b4c5b18bd 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -3153,6 +3153,10 @@ export class ConversationModel extends window.Backbone this.trigger('newmessage', model); this.updateUnread(); + + if (this.get('isArchived')) { + this.setArchived(false); + } } /**