adress reviews

pull/1350/head
Audric Ackermann 5 years ago
parent c9b847e464
commit 09a93d0648
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -3111,27 +3111,13 @@ async function removePrefixFromGroupConversations(instance) {
`countMessagesOld: ${countMessagesOld}, countMessagesNew: ${countMessagesNew}` `countMessagesOld: ${countMessagesOld}, countMessagesNew: ${countMessagesNew}`
); );
if (countMessagesOld > countMessagesNew) { const deleteId = countMessagesOld > countMessagesNew ? newId : oldId;
console.log(
'Removing the conversation without the prefix as there are less messages in it'
);
await instance.run( await instance.run(
`DELETE FROM ${CONVERSATIONS_TABLE} WHERE id = $id;`, `DELETE FROM ${CONVERSATIONS_TABLE} WHERE id = $id;`,
{ {
$id: newId, $id: deleteId,
} }
); );
} else {
console.log(
'Removing the conversation with the prefix as there are less messages in it'
);
await instance.run(
`DELETE FROM ${CONVERSATIONS_TABLE} WHERE id = $id;`,
{
$id: oldId,
}
);
}
} }
const morphedObject = { const morphedObject = {

Loading…
Cancel
Save