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

Commit 86a4f2bd authored by Varun Shah's avatar Varun Shah Committed by Automerger Merge Worker
Browse files

Merge "Ensure SyncManager PendingIntent is immutable." into rvc-dev am:...

Merge "Ensure SyncManager PendingIntent is immutable." into rvc-dev am: b924b1fe am: 0af643d4 am: b49260ab

Change-Id: I5156d64d5ad7efb0fc15d203a25c87ba616b7232
parents 5d71ac00 b49260ab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1819,7 +1819,8 @@ public class SyncManager {
        intent.putExtra(Intent.EXTRA_CLIENT_LABEL,
                com.android.internal.R.string.sync_binding_label);
        intent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivityAsUser(context, 0,
                new Intent(Settings.ACTION_SYNC_SETTINGS), 0, null, UserHandle.of(userId)));
                new Intent(Settings.ACTION_SYNC_SETTINGS), PendingIntent.FLAG_IMMUTABLE, null,
                UserHandle.of(userId)));

        return intent;
    }