From 04ce7578607e022e980f69a45bccfa6f84ad6785 Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Mon, 15 Aug 2016 10:56:12 -0700 Subject: [PATCH] Add missing remote conference property set. When creating a new remote conference, there was a missing call to "setConnectionProperties". This would prevent remote conferences from being created with the correct properties as defined in the actual conference. Bug: 30383741 Change-Id: I335e35c222ae18b0d6ea7e750b91bcc36aa40ece --- telecomm/java/android/telecom/RemoteConnectionService.java | 1 + 1 file changed, 1 insertion(+) diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java index 306b3c15fa11..c4739ff13a19 100644 --- a/telecomm/java/android/telecom/RemoteConnectionService.java +++ b/telecomm/java/android/telecom/RemoteConnectionService.java @@ -224,6 +224,7 @@ final class RemoteConnectionService { conference.setState(parcel.getState()); conference.setConnectionCapabilities(parcel.getConnectionCapabilities()); + conference.setConnectionProperties(parcel.getConnectionProperties()); mConferenceById.put(callId, conference); conference.registerCallback(new RemoteConference.Callback() { @Override -- 2.11.0