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

Commit 559e3426 authored by Mady Mellor's avatar Mady Mellor Committed by Android (Google) Code Review
Browse files

Merge "Protect against null expanded bubble & hide header for notifications"

parents 4a09436a 224577df
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -472,7 +472,8 @@ public class BubbleStackView extends FrameLayout implements BubbleTouchHandler.F

                @Override
                public void onActivityViewDestroyed(ActivityView view) {
                    NotificationEntry entry = mExpandedBubble.getEntry();
                    NotificationEntry entry = mExpandedBubble != null
                            ? mExpandedBubble.getEntry() : null;
                    Log.d(TAG, "onActivityViewDestroyed(key="
                            + ((entry != null) ? entry.key : "(none)") + "): " + view);
                }