Do not reset active_at after group fetch
This commit is contained in:
parent
e37c6e68ec
commit
abcfa3cc35
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue