fixed handling of self address messages w/o remoteMsgId

This commit is contained in:
Daniel Gultsch 2018-02-19 15:52:33 +01:00
parent 3edcb2e7c7
commit 742727504f
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ public class MessageParser extends AbstractParser implements OnMessagePacketRece
return;
}
status = Message.STATUS_RECEIVED;
if (conversation.findMessageWithRemoteId(remoteMsgId,counterpart) != null) {
if (remoteMsgId != null && conversation.findMessageWithRemoteId(remoteMsgId,counterpart) != null) {
return;
}
}