Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7808b214 authored by Tony Mak's avatar Tony Mak Committed by android-build-merger
Browse files

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

Merge "Merge "Fix wrong check in logActionClick" into qt-dev am: 6b98bcd8 am: 8319755b" into qt-r1-dev-plus-aosp
am: 9239a19e

Change-Id: I49763372f6ba83e1b4bac203ca965c9b1eca235e
parents a03ac86d 9239a19e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
            }