Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 078a490c authored by John Spurlock's avatar John Spurlock
Browse files

Clear notifications properly on ACTION_USER_STOPPED.

Which also takes care of the ACTION_USER_REMOVED case.

Bug:7277853
Change-Id: I0a6bade11bd0d420df03e16e69a386cfccfa07cc
parent ebf7e285
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1240,7 +1240,7 @@ public class NotificationManagerService extends INotificationManager.Stub
                if ((r.notification.flags & mustNotHaveFlags) != 0) {
                    continue;
                }
                if (!r.pkg.equals(pkg)) {
                if (pkg != null && !r.pkg.equals(pkg)) {
                    continue;
                }
                canceledSomething = true;