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