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

Commit 815ba714 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: b924b1fe am: 006c1de6

Change-Id: I432d6ea70f8260625d921e6dfa439f55e8f1c3bb
parents 32c54684 006c1de6
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;
    }