fix: restoring groups should use the libsession joined at timestamp

and then update using the active_at value as we read messages
pull/3137/head
yougotwill 8 months ago
parent f12eef4a51
commit 29d4f8497c

@ -602,6 +602,8 @@ async function handleLegacyGroupUpdate(latestEnvelopeTimestamp: number) {
const members = fromWrapper.members.map(m => m.pubkeyHex);
const admins = fromWrapper.members.filter(m => m.isAdmin).map(m => m.pubkeyHex);
const creationTimestamp = fromWrapper.joinedAtSeconds ? fromWrapper.joinedAtSeconds * 1000 : 0;
// then for all the existing legacy group in the wrapper, we need to override the field of what we have in the DB with what is in the wrapper
// We only set group admins on group creation
const groupDetails: ClosedGroup.GroupInfo = {
@ -610,10 +612,9 @@ async function handleLegacyGroupUpdate(latestEnvelopeTimestamp: number) {
members,
admins,
activeAt:
!!legacyGroupConvo.get('active_at') &&
legacyGroupConvo.get('active_at') < latestEnvelopeTimestamp
!!legacyGroupConvo.get('active_at') && legacyGroupConvo.get('active_at') > creationTimestamp
? legacyGroupConvo.get('active_at')
: latestEnvelopeTimestamp,
: creationTimestamp,
};
await ClosedGroup.updateOrCreateClosedGroup(groupDetails);

Loading…
Cancel
Save