Fix incorrect Conference time for IMS conference calls.

Looks like the connectTimeMillis parameter to ParcelableConference
got removed when partner CLs were merged in.  Adding it back fixes
the problem.

Bug: 20159830
Change-Id: Ibe067f64f8faea6fd1eb157e5073bc702978c511
This commit is contained in:
Tyler Gunn
2015-04-16 08:38:10 -07:00
parent 9561e7410b
commit bd1f9ece87

View File

@@ -130,7 +130,7 @@ public final class ParcelableConference implements Parcelable {
int videoState = source.readInt();
return new ParcelableConference(phoneAccount, state, capabilities, connectionIds,
videoCallProvider, videoState);
videoCallProvider, videoState, connectTimeMillis);
}
@Override