diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-02-09 22:08:43 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-02-09 22:08:43 +0100 |
commit | 72114d732427266024cdd6e27cd8d1aa60afae2f (patch) | |
tree | 3e8243bbe950e64823f06b5b7078f3c6829fd992 /src/main/java/de/thedevstack/conversationsplus/parser | |
parent | 899a39cbf74dcd35f2a62e1fd6499de4ba6193fd (diff) |
Fixes FS#135: condition NOT message.isRead() added to check if notification should be shown for a message
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/parser')
-rw-r--r-- | src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java b/src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java index 85c38e12..8c7d8efd 100644 --- a/src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java +++ b/src/main/java/de/thedevstack/conversationsplus/parser/MessageParser.java @@ -376,7 +376,7 @@ public class MessageParser extends AbstractParser implements && ConversationsPlusPreferences.autoDownloadFileLink() && mXmppConnectionService.isDownloadAllowedInConnection()) { manager.createNewDownloadConnection(message); - } else if (!message.isRead()) { + } else { mXmppConnectionService.getNotificationService().push(message); } } else { //no body |