Skip to content

Commit

Permalink
chore: change url -> urls semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-Zimmerman committed Feb 10, 2025
1 parent 25c38fc commit 3f2a64f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/telnyx_webrtc/lib/peer/web/peer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,10 @@ class Peer {
final Map<String, dynamic> _iceServers = {
'iceServers': [
{
'url': DefaultConfig.defaultStun,
'username': DefaultConfig.username,
'credential': DefaultConfig.password,
},
{
'url': DefaultConfig.defaultTurn,
'urls': [
DefaultConfig.defaultStun,
DefaultConfig.defaultTurn,
],
'username': DefaultConfig.username,
'credential': DefaultConfig.password,
},
Expand Down

0 comments on commit 3f2a64f

Please sign in to comment.