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

Commit 407d1fa5 authored by George Mount's avatar George Mount
Browse files

Fix NPE when clicking "back" quickly.

Bug 17319368

Change-Id: I8cf544aefa75bd5fe4f606e185f84977a36b0cdc
parent c9991c71
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -327,7 +327,7 @@ class EnterTransitionCoordinator extends ActivityTransitionCoordinator {
                public void run() {
                    if (mAnimations++ < MIN_ANIMATION_FRAMES) {
                        getDecor().postOnAnimation(this);
                    } else {
                    } else if (mResultReceiver != null) {
                        mResultReceiver.send(MSG_HIDE_SHARED_ELEMENTS, null);
                        mResultReceiver = null; // all done sending messages.
                    }