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

Commit f8c34ad3 authored by Hung-ying Tyan's avatar Hung-ying Tyan Committed by Android (Google) Code Review
Browse files

Merge "Do not keep alive for re-established call."

parents c2b8aa0b 8ba4566c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1223,9 +1223,9 @@ class SipSessionGroup implements SipListener {

        private void establishCall(boolean enableKeepAlive) {
            mState = SipSession.State.IN_CALL;
            mInCall = true;
            cancelSessionTimer();
            if (enableKeepAlive) enableKeepAlive();
            if (!mInCall && enableKeepAlive) enableKeepAlive();
            mInCall = true;
            mProxy.onCallEstablished(this, mPeerSessionDescription);
        }