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 948fd85a43 - Show all commits

View file

@ -214,6 +214,10 @@ public class MessageParser extends AbstractParser implements OnMessagePacketRece
finishedMessage.setFingerprint(otrService.getFingerprint(otrSession.getRemotePublicKey()));
conversation.setLastReceivedOtrMessageId(null);
if (body.startsWith("?OTR")) {
return null;
}
return finishedMessage;
} catch (Exception e) {
conversation.resetOtrSession();
@ -671,7 +675,7 @@ public class MessageParser extends AbstractParser implements OnMessagePacketRece
}
} else {
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": ignoring OTR message from " + from + " isForwarded=" + Boolean.toString(isForwarded) + ", isProperlyAddressed=" + Boolean.valueOf(isProperlyAddressed));
message = null;
return;
}
} else if (pgpEncrypted != null && Config.supportOpenPgp()) {
message = new Message(conversation, pgpEncrypted, Message.ENCRYPTION_PGP, status);