From 79200c82da0762b6064bf83dbd1a3fab0d191b70 Mon Sep 17 00:00:00 2001 From: Cody Henthorne Date: Mon, 14 Jun 2021 16:51:18 -0400 Subject: [PATCH] Fix create bubble conversation notification. --- .../securesms/notifications/v2/NotificationFactory.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/org/thoughtcrime/securesms/notifications/v2/NotificationFactory.kt b/app/src/main/java/org/thoughtcrime/securesms/notifications/v2/NotificationFactory.kt index 0ead43a1c..9595e10f2 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/notifications/v2/NotificationFactory.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/notifications/v2/NotificationFactory.kt @@ -362,6 +362,7 @@ object NotificationFactory { setSmallIcon(R.drawable.ic_notification) setColor(ContextCompat.getColor(context, R.color.core_ultramarine)) setCategory(NotificationCompat.CATEGORY_MESSAGE) + setGroup(MessageNotifierV2.NOTIFICATION_GROUP) setChannelId(conversation.getChannelId(context)) setContentTitle(conversation.getContentTitle(context)) setLargeIcon(conversation.getContactLargeIcon(context).toLargeBitmap(context))