am 8d9d3b92: Merge "Maintain call time across SRVCC (3/3)." into mnc-dev
* commit '8d9d3b92602d4a133534116588823ede92e9df88':
Maintain call time across SRVCC (3/3).
diff --git a/src/com/android/services/telephony/ImsConference.java b/src/com/android/services/telephony/ImsConference.java
index 02b6e99..02d057f 100644
--- a/src/com/android/services/telephony/ImsConference.java
+++ b/src/com/android/services/telephony/ImsConference.java
@@ -229,7 +229,10 @@
// Specify the connection time of the conference to be the connection time of the original
// connection.
- setConnectTimeMillis(conferenceHost.getOriginalConnection().getConnectTime());
+ long connectTime = conferenceHost.getOriginalConnection().getConnectTime();
+ setConnectTimeMillis(connectTime);
+ // Set the connectTime in the connection as well.
+ conferenceHost.setConnectTimeMillis(connectTime);
mTelephonyConnectionService = telephonyConnectionService;
setConferenceHost(conferenceHost);