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

Commit dea1f713 authored by Jeff Chang's avatar Jeff Chang Committed by android-build-merger
Browse files

Merge "Fix NPE on ActivityStack.removeTask when launched with invalid taskId" into qt-dev

am: 1e09d0e4

Change-Id: I54d5795403387575b700381a185ea7d289215fc8
parents 76d0f71d 1e09d0e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5438,7 +5438,7 @@ class ActivityStack extends ConfigurationContainer {
            if (isAttached()) {
                getDisplay().positionChildAtBottom(this);
            }
            if (!isActivityTypeHome() || getDisplay().isRemoved()) {
            if (!isActivityTypeHome() || !isAttached()) {
                remove();
            }
        }