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

Commit e8d06b9c authored by Mady Mellor's avatar Mady Mellor Committed by Automerger Merge Worker
Browse files

Merge "Fix possible NPE" into sc-v2-dev am: a7efb5e0

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15881361

Change-Id: Ie925e9f81a441c48055876b67046d6bc19301952
parents 2c4d2352 a7efb5e0
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());
            }