File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -373,8 +373,9 @@ class SIPUAHelper extends EventManager {
373373 (_uaSettings? .iceTransportPolicy ?? IceTransportPolicy .ALL )
374374 .toParameterString (),
375375 'iceServers' : _uaSettings? .iceServers,
376- 'tcpCandidatePolicy' : (_uaSettings? .tcpCandidatePolicy ??
377- TcpCandidatePolicy .ENABLED ).toParameterString (),
376+ 'tcpCandidatePolicy' :
377+ (_uaSettings? .tcpCandidatePolicy ?? TcpCandidatePolicy .ENABLED )
378+ .toParameterString (),
378379 'iceCandidatePoolSize' : _uaSettings? .iceCandidatePoolSize
379380 },
380381 'mediaConstraints' : < String , dynamic > {
@@ -856,10 +857,7 @@ extension _IceTransportPolicyEncoding on IceTransportPolicy {
856857 }
857858}
858859
859- enum TcpCandidatePolicy {
860- ENABLED ,
861- DISABLED
862- }
860+ enum TcpCandidatePolicy { ENABLED , DISABLED }
863861
864862extension _TcpCandidatePolicyEncoding on TcpCandidatePolicy {
865863 String toParameterString () {
You can’t perform that action at this time.
0 commit comments