Do not reset active_at after group fetch

Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2022-02-04 16:16:28 -08:00 committed by GitHub
parent 03783a9ac8
commit ea9874c87e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {