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

Commit 455e2049 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: I9c527975ac1c845c2a5b9cb7abc2f83d56feb68b
parents b63eac59 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);