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

Commit 621471f4 authored by Tony Mak's avatar Tony Mak
Browse files

Fix wrong check in logActionClick

Test: Add a log at the end of the logActionClick function. Click on
the action, observe the log is printed.

FIXES: 133508428
Change-Id: I207e60e76a66a36176b9f39caf09c97ae6eeb8c8
parent 0f5ce51f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ public class NotificationRemoteInputManager implements Dumpable {
            }
            final Notification.Action action =
                    statusBarNotification.getNotification().actions[actionIndex];
            if (Objects.equals(action.actionIntent, actionIntent)) {
            if (!Objects.equals(action.actionIntent, actionIntent)) {
                Log.w(TAG, "actionIntent does not match");
                return;
            }