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

Commit 293436df authored by Jeff DeCew's avatar Jeff DeCew Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in logActionClick when we were re-fetching the...

Merge "Fix NPE in logActionClick when we were re-fetching the NotificationEntry we already had." into sc-dev
parents 77ea3710 8e9b6f3f
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -221,12 +221,10 @@ public class NotificationRemoteInputManager implements Dumpable {
                buttonIndex = actionGroup.indexOfChild(view);
            }
            final int count = mEntryManager.getActiveNotificationsCount();
            final int rank = mEntryManager
                    .getActiveNotificationUnfiltered(key).getRanking().getRank();
            final int rank = entry.getRanking().getRank();

            NotificationVisibility.NotificationLocation location =
                    NotificationLogger.getNotificationLocation(
                            mEntryManager.getActiveNotificationUnfiltered(key));
                    NotificationLogger.getNotificationLocation(entry);
            final NotificationVisibility nv =
                    NotificationVisibility.obtain(key, rank, count, true, location);
            mClickNotifier.onNotificationActionClick(key, buttonIndex, action, nv, false);