Merge "Fix wrong check in logActionClick" into qt-dev am: 6b98bcd825

am: 8319755b83

Change-Id: I7daaa6e0431dd1f0b7bb1e9f3c892add14d6173e
This commit is contained in:
Tony Mak
2019-05-28 09:39:04 -07:00
committed by android-build-merger

View File

@@ -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;
}