1.0.1 #24

Merged
Sergei Poljanski merged 67 commits from develop into master 2024-12-13 19:57:19 +00:00
Showing only changes of commit 4990ac0a23 - Show all commits

View file

@ -2708,6 +2708,8 @@ public class XmppConnectionService extends Service {
public void destroyConversation(Conversation conversation) {
archiveConversation(conversation);
final Runnable runnable = () -> {
databaseBackend.deleteMessagesInConversation(conversation);
if (!databaseBackend.deleteConversation(conversation.getAccount(), conversation.getContactJid().asBareJid(), conversation.getNextCounterpart())) {
Log.d(Config.LOGTAG, conversation.getJid().asBareJid() + ": unable to delete conversation");
}