fixed handling of self address messages w/o remoteMsgId
This commit is contained in:
parent
2552e172c1
commit
57176b4a99
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue