Fixes FS#135: condition NOT message.isRead() added to check if notification should be shown for a message
This commit is contained in:
parent
6a2c1a0dd5
commit
d2cafe58fa
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ public class MessageParser extends AbstractParser implements
|
||||||
&& ConversationsPlusPreferences.autoDownloadFileLink()
|
&& ConversationsPlusPreferences.autoDownloadFileLink()
|
||||||
&& mXmppConnectionService.isDownloadAllowedInConnection()) {
|
&& mXmppConnectionService.isDownloadAllowedInConnection()) {
|
||||||
manager.createNewDownloadConnection(message);
|
manager.createNewDownloadConnection(message);
|
||||||
} else if (!message.isRead()) {
|
} else {
|
||||||
if (query == null) {
|
if (query == null) {
|
||||||
mXmppConnectionService.getNotificationService().push(message);
|
mXmppConnectionService.getNotificationService().push(message);
|
||||||
} else if (query.getWith() == null) { // mam catchup
|
} else if (query.getWith() == null) { // mam catchup
|
||||||
|
|
Loading…
Reference in a new issue