MessageParser: fix the regex for otr query messages.

This commit is contained in:
Michael 2015-01-24 16:19:58 +01:00
parent 7769d305e6
commit 8041d23cb1
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public class MessageParser extends AbstractParser implements
}
updateLastseen(packet, account, true);
String body = packet.getBody();
if (body.matches("^\\?OTRv\\d*\\?")) {
if (body.matches("^\\?OTRv\\d{1,2}\\?.*")) {
conversation.endOtrIfNeeded();
}
if (!conversation.hasValidOtrSession()) {