|
|
@ -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(
|
|
|
|
await instance.run(
|
|
|
|
'Removing the conversation without the prefix as there are less messages in it'
|
|
|
|
`DELETE FROM ${CONVERSATIONS_TABLE} WHERE id = $id;`,
|
|
|
|
);
|
|
|
|
{
|
|
|
|
await instance.run(
|
|
|
|
$id: deleteId,
|
|
|
|
`DELETE FROM ${CONVERSATIONS_TABLE} WHERE id = $id;`,
|
|
|
|
}
|
|
|
|
{
|
|
|
|
);
|
|
|
|
$id: newId,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
} 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 = {
|
|
|
|