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

Commit 743f6c37 authored by Charles He's avatar Charles He Committed by Android (Google) Code Review
Browse files

Merge "AM: fix bug in moveTaskToBackLocked due to LockTask"

parents e66a5bca 72a36526
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4510,7 +4510,7 @@ class ActivityStack<T extends StackWindowController> extends ConfigurationContai
        Slog.i(TAG, "moveTaskToBack: " + tr);

        // If the task is locked, then show the lock task toast
        if (!mService.mLockTaskController.checkLockedTask(tr)) {
        if (mService.mLockTaskController.checkLockedTask(tr)) {
            return false;
        }