diff --git a/src/helpers/ConversationsHelper.ts b/src/helpers/ConversationsHelper.ts index c5f1d05..07cda5c 100644 --- a/src/helpers/ConversationsHelper.ts +++ b/src/helpers/ConversationsHelper.ts @@ -487,10 +487,14 @@ export class ConversationsHelper { } // Delete all the members of the conversation - // TODO + await DatabaseHelper.DeleteRows(USERS_TABLE, { + conv_id: convID + }); // Delete the conversation entry itself - // TODO + await DatabaseHelper.DeleteRows(LIST_TABLE, { + id: convID + }); } /**