8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3c79bd commit c1b61b6Copy full SHA for c1b61b6
common/darwin/Classes/FlutterWebRTCPlugin.m
@@ -1203,7 +1203,7 @@ - (nonnull RTCConfiguration *)RTCConfiguration:(id)json
1203
1204
// pruneTurnPorts (private api)
1205
if (json[@"pruneTurnPorts"] != nil && [json[@"pruneTurnPorts"] isKindOfClass:[NSNumber class]]) {
1206
- NSNumber* pruneTurnPorts = json[@"audioJitterBufferFastAccelerate"];
+ NSNumber* pruneTurnPorts = json[@"pruneTurnPorts"];
1207
config.shouldPruneTurnPorts = [pruneTurnPorts boolValue];
1208
}
1209
@@ -1588,4 +1588,4 @@ -(NSDictionary*)transceiverToMap:(RTCRtpTransceiver*)transceiver {
1588
};
1589
return params;
1590
1591
-@end
+@end
0 commit comments