fixed npe in error message handling
This commit is contained in:
parent
0d679a7abb
commit
f6281a182d
|
@ -206,7 +206,7 @@ public class MessageParser extends AbstractParser implements
|
|||
from.toBareJid(),
|
||||
packet.getId(),
|
||||
Message.STATUS_SEND_FAILED);
|
||||
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
||||
if (message != null && message.getEncryption() == Message.ENCRYPTION_OTR) {
|
||||
message.getConversation().endOtrIfNeeded();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue