fixed handling of self address messages w/o remoteMsgId

This commit is contained in:
Christian Schneppe 2018-02-19 21:06:23 +01:00
parent 2552e172c1
commit 57176b4a99

View file

@ -440,7 +440,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;
}
}