fixed npe in error message handling

This commit is contained in:
Daniel Gultsch 2015-07-21 19:44:25 +02:00
parent 0d679a7abb
commit f6281a182d
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}