| Index: webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm
|
| diff --git a/webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm b/webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm
|
| index be6628888bcd5888052d18d2c2fb8ad149c13ca6..6f1442485c2e84cc3ad3935d43517bd98a8b7f2d 100644
|
| --- a/webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm
|
| +++ b/webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm
|
| @@ -41,7 +41,7 @@
|
| if (self = [super init]) {
|
| _iceServers = [NSMutableArray array];
|
| // Copy defaults.
|
| - webrtc::PeerConnectionInterface::RTCConfiguration config;
|
| + webrtc::PeerConnectionInterface::RTCConfiguration config(true);
|
| _iceTransportPolicy =
|
| [[self class] transportPolicyForTransportsType:config.type];
|
| _bundlePolicy =
|
| @@ -93,7 +93,7 @@
|
| - (webrtc::PeerConnectionInterface::RTCConfiguration *)
|
| createNativeConfiguration {
|
| std::unique_ptr<webrtc::PeerConnectionInterface::RTCConfiguration>
|
| - nativeConfig(new webrtc::PeerConnectionInterface::RTCConfiguration());
|
| + nativeConfig(new webrtc::PeerConnectionInterface::RTCConfiguration(true));
|
|
|
| for (RTCIceServer *iceServer in _iceServers) {
|
| nativeConfig->servers.push_back(iceServer.nativeServer);
|
|
|