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

Commit 3e59d689 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

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

parents 811ad27d e44adb45
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();
                }
            }