Skip to content

Commit

Permalink
Merge pull request #14 from pranav-bhatt/master
Browse files Browse the repository at this point in the history
Fixed TURN example syntax
  • Loading branch information
dkumor committed Aug 18, 2020
2 parents 22f1c04 + cedf55a commit 5ccaa30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/mobile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ myConnection = RTCConnection(rtcConfiguration=RTCConfiguration([
```javascript
var conn = new rtcbot.RTCConnection(rtcConfiguration=[
{ urls: ["stun:stun.l.google.com:19302"] },
{ urls: ["turn:my.server.ip:3478?transport=udp",
username: "myusername", credential: "mypassword"], },
{ urls: "turn:my.server.ip:3478?transport=udp",
username: "myusername", credential: "mypassword", },
]);
```

Expand Down

0 comments on commit 5ccaa30

Please sign in to comment.