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

Commit 9fe9c4a5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "BubbleExpandedView: Mark unaudited PendingIntents with FLAG_MUTABLE_UNAUDITED"

parents 44af408b d767d3de
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -474,8 +474,10 @@ public class BubbleExpandedView extends LinearLayout {
        Bundle extras = new Bundle();
        extras.putBinder(EXTRA_BUBBLE_CONTROLLER, ObjectWrapper.wrap(mController));
        target.putExtras(extras);
        // TODO(b/175352055) Please replace FLAG_MUTABLE_UNAUDITED below
        // with either FLAG_IMMUTABLE (recommended) or FLAG_MUTABLE.
        mPendingIntent = PendingIntent.getActivity(mContext, 0 /* requestCode */,
                target, PendingIntent.FLAG_UPDATE_CURRENT);
                target, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_MUTABLE_UNAUDITED);
        mSettingsIcon.setVisibility(GONE);
    }