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

Commit b19b06b6 authored by Adrian Roos's avatar Adrian Roos
Browse files

Notification: Remove actions from public view

Change-Id: I9d95e2ea3ff89110f58f6d5585771ad301494e41
Test: Turn on "hide sensitive notifications on lockscreen", receive notification, make sure it has no actions
Fixes: 37907366
parent 9870d0be
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -4230,6 +4230,8 @@ public class Notification implements Parcelable
            mN.mLargeIcon = null;
            Bitmap largeIconLegacy = mN.largeIcon;
            mN.largeIcon = null;
            ArrayList<Action> actions = mActions;
            mActions = new ArrayList<>();
            Bundle publicExtras = new Bundle();
            publicExtras.putBoolean(EXTRA_SHOW_WHEN,
                    savedBundle.getBoolean(EXTRA_SHOW_WHEN));
@@ -4245,6 +4247,7 @@ public class Notification implements Parcelable
            mN.extras = savedBundle;
            mN.mLargeIcon = largeIcon;
            mN.largeIcon = largeIconLegacy;
            mActions = actions;
            mStyle = style;
            return view;
        }