fixed possible npe

This commit is contained in:
iNPUTmice 2014-10-03 11:55:38 +02:00
parent facd15f037
commit 0e56ff93e9
1 changed files with 5 additions and 1 deletions

View File

@ -57,7 +57,8 @@ public class NotificationService {
mList.add(message);
notifications.put(conversationUuid, mList);
}
updateNotification(!(this.mIsInForeground && this.mOpenConversation == null) || !isScreenOn);
updateNotification(!(this.mIsInForeground && this.mOpenConversation == null)
|| !isScreenOn);
}
public void clear() {
@ -195,6 +196,9 @@ public class NotificationService {
public static boolean wasHighlightedOrPrivate(Message message) {
String nick = message.getConversation().getMucOptions().getActualNick();
Pattern highlight = generateNickHighlightPattern(nick);
if (message.getBody() == null || nick == null) {
return false;
}
Matcher m = highlight.matcher(message.getBody());
return (m.find() || message.getType() == Message.TYPE_PRIVATE);
}