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

Commit 83dd3bb4 authored by Tyler Gunn's avatar Tyler Gunn Committed by Automerger Merge Worker
Browse files

Merge "Add pending intent immutability to Call block disabled notification."...

Merge "Add pending intent immutability to Call block disabled notification." into sc-dev am: f4b84bad

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/services/Telecomm/+/14985059

Change-Id: I5828640e35e34e97fdcddb529e1c9f5b59f8df89
parents e53a2b0e f4b84bad
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -95,7 +95,8 @@ public final class BlockedNumbersUtil {
        if (showNotification) {
            Intent intent = new Intent(context, CallBlockDisabledActivity.class);
            PendingIntent pendingIntent = PendingIntent.getActivity(
                    context, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
                    context, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT
                            | PendingIntent.FLAG_IMMUTABLE);

            String title = context.getString(
                    R.string.phone_strings_call_blocking_turned_off_notification_title_txt);