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

Commit 4a64afd2 authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

am 24547592: Fix the startAudio order for 3-way calls.

Merge commit '24547592' into gingerbread-plus-aosp

* commit '24547592':
  Fix the startAudio order for 3-way calls.
parents 159cceaa 24547592
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -642,14 +642,14 @@ public class SipPhone extends SipPhoneBase {

            @Override
            public void onCallEstablished(SipAudioCall call) {
                call.startAudio();
                onChanged(call);
                if (mState == Call.State.ACTIVE) call.startAudio();
            }

            @Override
            public void onCallHeld(SipAudioCall call) {
                call.startAudio();
                onChanged(call);
                if (mState == Call.State.HOLDING) call.startAudio();
            }

            @Override