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

Commit 3926e3fb authored by Tyler Gunn's avatar Tyler Gunn Committed by Android Git Automerger
Browse files

am 3e59d689: Merge "Fixing unhold in CallsManager so it does not hold child...

am 3e59d689: Merge "Fixing unhold in CallsManager so it does not hold child calls." into lmp-mr1-dev

* commit '3e59d689':
  Fixing unhold in CallsManager so it does not hold child calls.
parents 923a2d16 3e59d689
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -776,7 +776,8 @@ public final class CallsManager extends Call.ListenerBase {
        } else {
            Log.d(this, "unholding call: (%s)", call);
            for (Call c : mCalls) {
                if (c != null && c.isAlive() && c != call) {
                // Only attempt to hold parent calls and not the individual children.
                if (c != null && c.isAlive() && c != call && c.getParentCall() == null) {
                    c.hold();
                }
            }