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

Commit 03b090ed authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Ensure call log pending intent on missed call notification is immutable.

Test: Modify telecom to always display notification; verify you can still
get to the call log from the missed call notification hosted by Telecom.
Fixes: 155650969

Change-Id: I07fdc66b441cdbb7fdf3fad8842fe17a2126e445
parent ae8e6c91
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -472,7 +472,7 @@ public class MissedCallNotifierImpl extends CallsManagerListenerBase implements
        TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(mContext);
        taskStackBuilder.addNextIntent(intent);

        return taskStackBuilder.getPendingIntent(0, 0, null, userHandle);
        return taskStackBuilder.getPendingIntent(0, PendingIntent.FLAG_IMMUTABLE, null, userHandle);
    }

    /**