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

Commit 5d9fab61 authored by Schneider Victor-tulias's avatar Schneider Victor-tulias Committed by Android (Google) Code Review
Browse files

Merge "Add null check to ActivityManagerWrapper#startRecentsActivity" into main

parents adddb6a6 f97980eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ public class ActivityManagerWrapper {
            final RecentsAnimationListener animationHandler, final Consumer<Boolean> resultCallback,
            Handler resultCallbackHandler) {
        boolean result = startRecentsActivity(intent, eventTime, animationHandler);
        if (resultCallback != null) {
        if (resultCallback != null && resultCallbackHandler != null) {
            resultCallbackHandler.post(new Runnable() {
                @Override
                public void run() {