From abcfa3cc3518f5dc36a1196c37489f03d4c4e095 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Fri, 4 Feb 2022 13:23:30 -0800 Subject: [PATCH] Do not reset active_at after group fetch --- ts/groups.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/groups.ts b/ts/groups.ts index e5ac5f6829..0c4ac6af25 100644 --- a/ts/groups.ts +++ b/ts/groups.ts @@ -2826,7 +2826,7 @@ async function updateGroup( // Unknown Group in the left pane. let activeAt = null; if (viaSync) { - activeAt = null; + activeAt = conversation.get('active_at') || null; } else if ((isInitialDataFetch || justJoinedGroup) && newAttributes.name) { activeAt = initialSentAt; } else {