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

Commit 581667d6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Let Home activity restart during first few crashes" into rvc-dev am: d0db17a1

Change-Id: If3e1987728588aad0efed692f1a99f934bac8c83
parents e440df36 d0db17a1
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2572,6 +2572,13 @@ class ActivityStack extends Task {
        if (r == null || r.app != app) {
            return null;
        }
        if (r.isActivityTypeHome() && mAtmService.mHomeProcess == app) {
            // Home activities should not be force-finished as we have nothing else to go
            // back to. AppErrors will get to it after two crashes in MIN_CRASH_INTERVAL.
            Slog.w(TAG, "  Not force finishing home activity "
                    + r.intent.getComponent().flattenToShortString());
            return null;
        }
        Slog.w(TAG, "  Force finishing activity "
                + r.intent.getComponent().flattenToShortString());
        Task finishedTask = r.getTask();