diff options
| author | 2019-05-28 16:21:31 +0000 | |
|---|---|---|
| committer | 2019-05-28 16:21:31 +0000 | |
| commit | 6b98bcd825f82ad354a845df484493e36a84210f (patch) | |
| tree | ef5ea822be21ac2e981f7be47754a0c134cabc29 | |
| parent | 05ec93ebc9cde5f77471ae3d6f37221785d298d3 (diff) | |
| parent | 621471f43f19ba2ded740dae570672101020787c (diff) | |
Merge "Fix wrong check in logActionClick" into qt-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java index fe8c6b7c1e2c..1440803f1524 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; } |