am 091c5238: Merge "SipAudioCall: perform local ops before network op in endCall()" into gingerbread
Merge commit '091c5238a00ca51dc69b8b09459e6ac88e1eb077' into gingerbread-plus-aosp * commit '091c5238a00ca51dc69b8b09459e6ac88e1eb077': SipAudioCall: perform local ops before network op in endCall()
This commit is contained in:
@@ -343,8 +343,11 @@ public class SipAudioCallImpl extends SipSessionAdapter
|
||||
public synchronized void endCall() throws SipException {
|
||||
try {
|
||||
stopRinging();
|
||||
if (mSipSession != null) mSipSession.endCall();
|
||||
stopCall(true);
|
||||
mInCall = false;
|
||||
|
||||
// perform the above local ops first and then network op
|
||||
if (mSipSession != null) mSipSession.endCall();
|
||||
} catch (Throwable e) {
|
||||
throwSipException(e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user