Set GroupAlertBehavior for Single Notifications

This commit is contained in:
Marcel M 2023-10-22 15:53:07 +02:00
parent 6be9d07f91
commit a6dfafda6b
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ internal class SingleMessageNotificationCreator(
.setCategory(NotificationCompat.CATEGORY_EMAIL)
.setGroup(baseNotificationData.groupKey)
.setGroupSummary(isGroupSummary)
.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY)
.setSmallIcon(resourceProvider.iconNewMail)
.setColor(baseNotificationData.color)
.setWhen(singleNotificationData.timestamp)

View file

@ -54,6 +54,7 @@ internal class SummaryNotificationCreator(
.setCategory(NotificationCompat.CATEGORY_EMAIL)
.setGroup(baseNotificationData.groupKey)
.setGroupSummary(true)
.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY)
.setSmallIcon(resourceProvider.iconNewMail)
.setColor(baseNotificationData.color)
.setWhen(notificationData.timestamp)