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

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

Merge "Fix possible NPE" into sc-v2-dev

parents a1b54abe 120e6068
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -968,7 +968,7 @@ public class BubbleStackView extends FrameLayout
            }
        });
        mExpandedViewAlphaAnimator.addUpdateListener(valueAnimator -> {
            if (mExpandedBubble != null) {
            if (mExpandedBubble != null && mExpandedBubble.getExpandedView() != null) {
                mExpandedBubble.getExpandedView().setTaskViewAlpha(
                        (float) valueAnimator.getAnimatedValue());
            }