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

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

Change-Id: If95d1f1ebf5837007fa4c8e1a50ebb4878d33bbb
parents 5a5067ec 815ba714
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;
    }