Merge pull request #664 from squidpickles/development
Added check for empty from on group chat packet
This commit is contained in:
commit
c61120bfc4
|
@ -133,6 +133,9 @@ public class MessageParser extends AbstractParser implements
|
|||
private Message parseGroupchat(MessagePacket packet, Account account) {
|
||||
int status;
|
||||
final Jid from = packet.getFrom();
|
||||
if (from == null) {
|
||||
return null;
|
||||
}
|
||||
if (mXmppConnectionService.find(account.pendingConferenceLeaves,
|
||||
account, from.toBareJid()) != null) {
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue