From 762cda6b6732aa7a4d378be5918e335ea87d443a Mon Sep 17 00:00:00 2001 From: alexklimaj Date: Tue, 6 Jan 2026 10:33:07 -0700 Subject: [PATCH] Fix notification group summary behavior (double cha-ching) in WooNotificationBuilder --- .../woocommerce/android/notifications/WooNotificationBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WooCommerce/src/main/kotlin/com/woocommerce/android/notifications/WooNotificationBuilder.kt b/WooCommerce/src/main/kotlin/com/woocommerce/android/notifications/WooNotificationBuilder.kt index 770b5ca2e3bf..9df6be03a673 100644 --- a/WooCommerce/src/main/kotlin/com/woocommerce/android/notifications/WooNotificationBuilder.kt +++ b/WooCommerce/src/main/kotlin/com/woocommerce/android/notifications/WooNotificationBuilder.kt @@ -117,8 +117,8 @@ class WooNotificationBuilder @Inject constructor( // Also add a group summary notification, which is required for non-wearable devices // Do not need to play the sound again. We've already played it in the individual builder. if (!isGroupNotification) { - setGroupSummary(true) setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_CHILDREN) + setGroupSummary(true) showNotification(notification.getGroupPushId(), notification, this) } }