@ -603,7 +603,9 @@ 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 ;
// NOTE some existing groups might not have a joinedAtSeconds and we need a truthy fallback value in order to poll and show up in the conversations list
const creationTimestamp = fromWrapper . joinedAtSeconds ? fromWrapper . joinedAtSeconds * 1000 : 1 ;
// 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 +645,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 ) ) ;