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

This commit is contained in:
TreeHugger Robot
2019-05-28 16:21:31 +00:00
committed by Android (Google) Code Review

View File

@@ -194,7 +194,7 @@ public class NotificationRemoteInputManager implements Dumpable {
} }
final Notification.Action action = final Notification.Action action =
statusBarNotification.getNotification().actions[actionIndex]; statusBarNotification.getNotification().actions[actionIndex];
if (Objects.equals(action.actionIntent, actionIntent)) { if (!Objects.equals(action.actionIntent, actionIntent)) {
Log.w(TAG, "actionIntent does not match"); Log.w(TAG, "actionIntent does not match");
return; return;
} }