8000 Update FlutterWebRTCPlugin.m · tmthecoder/flutter-webrtc@c1b61b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit c1b61b6

Browse files
authored
Update FlutterWebRTCPlugin.m
1 parent a3c79bd commit c1b61b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/darwin/Classes/FlutterWebRTCPlugin.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ - (nonnull RTCConfiguration *)RTCConfiguration:(id)json
12031203

12041204
// pruneTurnPorts (private api)
12051205
if (json[@"pruneTurnPorts"] != nil && [json[@"pruneTurnPorts"] isKindOfClass:[NSNumber class]]) {
1206-
NSNumber* pruneTurnPorts = json[@"audioJitterBufferFastAccelerate"];
1206+
NSNumber* pruneTurnPorts = json[@"pruneTurnPorts"];
12071207
config.shouldPruneTurnPorts = [pruneTurnPorts boolValue];
12081208
}
12091209

@@ -1588,4 +1588,4 @@ -(NSDictionary*)transceiverToMap:(RTCRtpTransceiver*)transceiver {
15881588
};
15891589
return params;
15901590
}
1591-
@end
1591+
@end

0 commit comments

Comments
 (0)
0