@ -52,6 +52,7 @@ import { HexKeyPair } from './keypairs';
import { queueAllCachedFromSource } from './receiver' ;
import { EnvelopePlus } from './types' ;
import { ConversationTypeEnum , CONVERSATION_PRIORITIES } from '../models/types' ;
import { CONVERSATION } from '../session/constants' ;
function groupByNamespace ( incomingConfigs : Array < RetrieveMessageItemWithNamespace > ) {
const groupedByVariant : Map <
@ -603,7 +604,10 @@ 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 ;
const creationTimestamp = fromWrapper . joinedAtSeconds
? fromWrapper . joinedAtSeconds * 1000
: CONVERSATION . LAST_JOINED_FALLBACK_TIMESTAMP ;
// 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 = {
@ -643,13 +647,12 @@ async function handleLegacyGroupUpdate(latestEnvelopeTimestamp: number) {
const existingTimestampMs = legacyGroupConvo . get ( 'lastJoinedTimestamp' ) ;
const existingJoinedAtSeconds = Math . floor ( existingTimestampMs / 1000 ) ;
if ( existingJoinedAtSeconds !== fromWrapper. joinedAtSeconds ) {
if ( existingJoinedAtSeconds !== creationTimestamp ) {
legacyGroupConvo . set ( {
lastJoinedTimestamp : fromWrapper.joinedAtSeconds * 1000 ,
lastJoinedTimestamp : creationTimestamp ,
} ) ;
changes = true ;
}
// start polling for this group if we haven't left it yet. The wrapper does not store this info for legacy group so we check from the DB entry instead
if ( ! legacyGroupConvo . get ( 'isKickedFromGroup' ) && ! legacyGroupConvo . get ( 'left' ) ) {
getSwarmPollingInstance ( ) . addGroupId ( PubKey . cast ( fromWrapper . pubkeyHex ) ) ;