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

Commit af60e537 authored by Jeremy Goldman's avatar Jeremy Goldman
Browse files

EuiccOperationSidecar PendingIntent includes Immutable flag.

Bug: 172206956
Test: atest SettingsUnitTests
Change-Id: I8378746660777082d714ace21d9a459775fefc95
parent f27d3c33
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -99,7 +99,8 @@ public abstract class EuiccOperationSidecar extends SidecarFragment {
        Intent intent = new Intent(getReceiverAction());
        intent.putExtra(EXTRA_OP_ID, mOpId);
        return PendingIntent.getBroadcast(
                getContext(), REQUEST_CODE, intent, PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE_UNAUDITED);
                getContext(), REQUEST_CODE, intent,
                PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
    }

    @Override