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,
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.'
);

@ -48,6 +48,7 @@ export interface GroupInfo {
blocked?: boolean;
admins?: Array<string>;
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;
}

@ -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(

Loading…
Cancel
Save