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

Commit 22cb3774 authored by Tony Wickham's avatar Tony Wickham
Browse files

Ignore clicks on notifications that don't have intents.

Bug: 64479852
Change-Id: I3bfff96a12169d0d191a36a8c7e90d4810e9f176
parent 94b02ad8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -94,6 +94,9 @@ public class NotificationInfo implements View.OnClickListener {

    @Override
    public void onClick(View view) {
        if (intent == null) {
            return;
        }
        final Launcher launcher = Launcher.getLauncher(view.getContext());
        Bundle activityOptions = ActivityOptions.makeClipRevealAnimation(
                view, 0, 0, view.getWidth(), view.getHeight()).toBundle();