Fix the bug where if we leave and get added back, we get removed again

pull/1518/head
Audric Ackermann 4 years ago
parent 6aa3e5b7bc
commit 641f9ee368
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -235,6 +235,7 @@ export async function handleNewClosedGroup(
members: members, members: members,
admins, admins,
active: true, active: true,
weWereJustAdded: true,
}; };
// be sure to call this before sending the message. // be sure to call this before sending the message.
@ -509,7 +510,8 @@ async function performIfValid(
lastJoinedTimestamp = aYearAgo; lastJoinedTimestamp = aYearAgo;
} }
if (envelope.timestamp <= lastJoinedTimestamp) { const envelopeTimestamp = _.toNumber(envelope.timestamp);
if (envelopeTimestamp <= lastJoinedTimestamp) {
window.log.warn( window.log.warn(
'Got a group update with an older timestamp than when we joined this group last time. Dropping it.' 'Got a group update with an older timestamp than when we joined this group last time. Dropping it.'
); );

@ -48,6 +48,7 @@ export interface GroupInfo {
blocked?: boolean; blocked?: boolean;
admins?: Array<string>; admins?: Array<string>;
secretKey?: Uint8Array; secretKey?: Uint8Array;
weWereJustAdded?: boolean;
} }
interface UpdatableGroupState { interface UpdatableGroupState {
@ -243,7 +244,7 @@ export function buildGroupDiff(
} }
export async function updateOrCreateClosedGroup(details: GroupInfo) { export async function updateOrCreateClosedGroup(details: GroupInfo) {
const { id } = details; const { id, weWereJustAdded } = details;
const conversation = await ConversationController.getInstance().getOrCreateAndWait( const conversation = await ConversationController.getInstance().getOrCreateAndWait(
id, id,
@ -268,7 +269,9 @@ export async function updateOrCreateClosedGroup(details: GroupInfo) {
updates.timestamp = updates.active_at; updates.timestamp = updates.active_at;
} }
updates.left = false; updates.left = false;
updates.lastJoinedTimestamp = updates.active_at; updates.lastJoinedTimestamp = weWereJustAdded
? Date.now()
: updates.active_at;
} else { } else {
updates.left = true; updates.left = true;
} }

Loading…
Cancel
Save