don't allow to delete info-messages for all

This commit is contained in:
adbenitez
2025-03-12 16:22:45 +01:00
parent a2847ea45e
commit 1340166a91
@@ -66,7 +66,7 @@ public abstract class MessageSelectorFragment
if (dcChat.canSend() && !dcChat.isSelfTalk()) {
for(int msgId : messageIds) {
DcMsg msg = dcContext.getMsg(msgId);
if (!msg.isOutgoing()) {
if (!msg.isOutgoing() || msg.isInfo()) {
canDeleteForAll = false;
break;
}