From 076bddde4bfd02613b0bd6efd3a7610898917c5e Mon Sep 17 00:00:00 2001 From: Chris Wren Date: Mon, 25 Apr 2016 16:44:53 -0400 Subject: cancel group children before summaries Bug:28190616 Change-Id: I1b716417119cfa3f4ffdd159ab5197cbfa714a8d --- .../com/android/server/notification/NotificationManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index e411579dbf84..9bdb14920fc8 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -3316,9 +3316,9 @@ public class NotificationManagerService extends SystemService { mNotificationList.remove(index); - cancelNotificationLocked(r, sendDelete, reason); cancelGroupChildrenLocked(r, callingUid, callingPid, listenerName, REASON_GROUP_SUMMARY_CANCELED); + cancelNotificationLocked(r, sendDelete, reason); updateLightsLocked(); } } -- cgit v1.2.3-59-g8ed1b