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

Commit b9e320c8 authored by joshmccloskey's avatar joshmccloskey Committed by Joshua Mccloskey
Browse files

Add immutability flag to face slice

Fix: 172212761
Test: Verified suggestion icon appears.
Change-Id: Ia17ca67d7d729e0608169c23f9df0c1a9d473c85
parent eb9e2e74
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -143,8 +143,8 @@ public class FaceSetupSlice implements CustomSliceable {
    private static RowBuilder buildRowBuilder(CharSequence title, CharSequence subTitle,
            IconCompat icon, Context context, Intent intent) {
        final SliceAction primarySliceAction = SliceAction.createDeeplink(
                PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_MUTABLE_UNAUDITED), icon, ListBuilder.ICON_IMAGE,
                title);
                PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_IMMUTABLE),
                icon, ListBuilder.ICON_IMAGE, title);
        return new RowBuilder()
                .setTitleItem(icon, ListBuilder.ICON_IMAGE)
                .setTitle(title)