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

Commit 2e448f75 authored by jhtop.kim's avatar jhtop.kim Committed by Jaikumar Ganesh
Browse files

Fix notification manager delete intent.



Notification manager was sending the delete intent even when
the notification was clicked and not just when cleared.

Change-Id: I9f8ae973b7972bc34cd15d213e58a961138fa7e5
Signed-off-by: default avatarjhtop.kim <jhtop.kim@samsung.com>
parent fd909a77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ public class NotificationManagerService extends INotificationManager.Stub

        public void onNotificationClick(String pkg, String tag, int id) {
            cancelNotification(pkg, tag, id, Notification.FLAG_AUTO_CANCEL,
                    Notification.FLAG_FOREGROUND_SERVICE, true);
                    Notification.FLAG_FOREGROUND_SERVICE, false);
        }

        public void onNotificationClear(String pkg, String tag, int id) {