[SES-567] Fixed a couple of issues where the Group poller would be stopped during creation

This commit is contained in:
Morgan Pretty
2023-06-02 17:00:20 +10:00
parent 9b7fb3dd86
commit 2b7bd7417e
4 changed files with 31 additions and 11 deletions

View File

@@ -738,6 +738,11 @@ class Storage(context: Context, helper: SQLCipherOpenHelper) : Database(context,
return mmsSmsDb.getConversationCount(threadID)
}
override fun deleteConversation(threadId: Long) {
val threadDB = DatabaseComponent.get(context).threadDatabase()
threadDB.deleteConversation(threadId)
}
override fun getAttachmentDataUri(attachmentId: AttachmentId): Uri {