Do not show notification for local group messages

This commit is contained in:
Torsten Grote
2016-11-09 17:16:13 -02:00
parent 563d897651
commit eb66924e21

View File

@@ -246,7 +246,7 @@ class AndroidNotificationManagerImpl implements AndroidNotificationManager,
showContactNotification(p.getContactId());
} else if (e instanceof GroupMessageAddedEvent) {
GroupMessageAddedEvent g = (GroupMessageAddedEvent) e;
showGroupMessageNotification(g.getGroupId());
if (!g.isLocal()) showGroupMessageNotification(g.getGroupId());
} else if (e instanceof ForumPostReceivedEvent) {
ForumPostReceivedEvent f = (ForumPostReceivedEvent) e;
showForumPostNotification(f.getGroupId());