diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java index 2793b2a0f009a..f1ff536ff0c3c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java @@ -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; }