fixed handling of self address messages w/o remoteMsgId
This commit is contained in:
parent
3edcb2e7c7
commit
742727504f
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue