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

Commit 6b98bcd8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix wrong check in logActionClick" into qt-dev

parents 05ec93eb 621471f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,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;
            }