From 4bc81fd51af6fec99cef49d392e9c73bbf7d7e12 Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Thu, 4 May 2023 10:08:38 -0400 Subject: [PATCH] Explicitly save active_at status on call receipt --- ts/models/conversations.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 7e1cc6e007..fe4dbb1cb5 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -3470,6 +3470,8 @@ export class ConversationModel extends window.Backbone if (canConversationBeUnarchived(this.attributes)) { this.setArchived(false); + } else { + window.Signal.Data.updateConversation(this.attributes); } }) );