diff --git a/ts/receiver/closedGroups.ts b/ts/receiver/closedGroups.ts index e28637d99..f97288fd9 100644 --- a/ts/receiver/closedGroups.ts +++ b/ts/receiver/closedGroups.ts @@ -235,6 +235,7 @@ export async function handleNewClosedGroup( members: members, admins, active: true, + weWereJustAdded: true, }; // be sure to call this before sending the message. @@ -509,7 +510,8 @@ async function performIfValid( lastJoinedTimestamp = aYearAgo; } - if (envelope.timestamp <= lastJoinedTimestamp) { + const envelopeTimestamp = _.toNumber(envelope.timestamp); + if (envelopeTimestamp <= lastJoinedTimestamp) { window.log.warn( 'Got a group update with an older timestamp than when we joined this group last time. Dropping it.' ); diff --git a/ts/session/group/index.ts b/ts/session/group/index.ts index 9bfff075d..4c2e940d6 100644 --- a/ts/session/group/index.ts +++ b/ts/session/group/index.ts @@ -48,6 +48,7 @@ export interface GroupInfo { blocked?: boolean; admins?: Array; secretKey?: Uint8Array; + weWereJustAdded?: boolean; } interface UpdatableGroupState { @@ -243,7 +244,7 @@ export function buildGroupDiff( } export async function updateOrCreateClosedGroup(details: GroupInfo) { - const { id } = details; + const { id, weWereJustAdded } = details; const conversation = await ConversationController.getInstance().getOrCreateAndWait( id, @@ -268,7 +269,9 @@ export async function updateOrCreateClosedGroup(details: GroupInfo) { updates.timestamp = updates.active_at; } updates.left = false; - updates.lastJoinedTimestamp = updates.active_at; + updates.lastJoinedTimestamp = weWereJustAdded + ? Date.now() + : updates.active_at; } else { updates.left = true; } diff --git a/ts/session/utils/syncUtils.ts b/ts/session/utils/syncUtils.ts index 5438dc86c..2ed6f0c03 100644 --- a/ts/session/utils/syncUtils.ts +++ b/ts/session/utils/syncUtils.ts @@ -66,8 +66,8 @@ export const forceSyncConfigurationNowIfNeeded = async ( // tslint:disable-next-line: no-void-expression const callback = waitForMessageSent ? () => { - resolve(true); - } + resolve(true); + } : undefined; void getMessageQueue().sendSyncMessage(configMessage, callback as any); // either we resolve from the callback if we need to wait for it, @@ -95,8 +95,8 @@ export const getCurrentConfigurationMessage = async ( const openGroupsIds = convos .filter(c => !!c.get('active_at') && c.isPublic() && !c.get('left')) .map(c => c.id.substring((c.id as string).lastIndexOf('@') + 1)) as Array< - string - >; + string + >; // Filter Closed/Medium groups const closedGroupModels = convos.filter(