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

Commit 8e60a4a7 authored by Craig Mautner's avatar Craig Mautner Committed by Android Git Automerger
Browse files

am e3c9ae67: am 16efe96c: Merge "Fix parenthetical error." into klp-dev

* commit 'e3c9ae67':
  Fix parenthetical error.
parents 19eacd56 e3c9ae67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1417,8 +1417,8 @@ public final class ActivityStackSupervisor {
                    final ActivityStack lastStack = getLastStack();
                    ActivityRecord curTop = lastStack == null?
                            null : lastStack.topRunningNonDelayedActivityLocked(notTop);
                    if (curTop != null && (curTop.task != intentActivity.task) ||
                            curTop.task != lastStack.topTask()) {
                    if (curTop != null && (curTop.task != intentActivity.task ||
                            curTop.task != lastStack.topTask())) {
                        r.intent.addFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
                        if (sourceRecord == null || (sourceStack.topActivity() != null &&
                                sourceStack.topActivity().task == sourceRecord.task)) {