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

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

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

* commit '16efe96c':
  Fix parenthetical error.
parents 0c95b8c8 16efe96c
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)) {