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

Commit e485fe13 authored by Winson Chung's avatar Winson Chung Committed by android-build-merger
Browse files

Merge "Fix issue with home activity started with standard activity type" into pi-dev

am: 25a1d9d8

Change-Id: If0ebf8ac3100dbef8b97c4c8eba50857f483d74e
parents b37470ff 25a1d9d8
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1077,6 +1077,11 @@ final class ActivityRecord extends ConfigurationContainer implements AppWindowCo
            // System process can launch home activity.
            return true;
        }
        // Allow the recents component to launch the home activity.
        final RecentTasks recentTasks = mStackSupervisor.mService.getRecentTasks();
        if (recentTasks != null && recentTasks.isCallerRecents(uid)) {
            return true;
        }
        // Resolver activity can launch home activity.
        return sourceRecord != null && sourceRecord.isResolverActivity();
    }