summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2019-05-28 16:21:31 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-05-28 16:21:31 +0000
commit6b98bcd825f82ad354a845df484493e36a84210f (patch)
treeef5ea822be21ac2e981f7be47754a0c134cabc29
parent05ec93ebc9cde5f77471ae3d6f37221785d298d3 (diff)
parent621471f43f19ba2ded740dae570672101020787c (diff)
Merge "Fix wrong check in logActionClick" into qt-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/NotificationRemoteInputManager.java2
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;
}