Fix TURN server example in WebRTC documentation

WebRTC GDNative plugin uses `credential` and not `credentials`.
74f2c78db5/src/WebRTCLibPeerConnection.cpp (L35-L37)
This commit is contained in:
PouleyKetchoupp 2020-09-08 11:10:57 +02:00
parent 28100d554c
commit 280496a2c3

View file

@ -97,7 +97,7 @@
{
"urls": [ "turn:turn.example.com:3478" ], # One or more TURN servers.
"username": "a_username", # Optional username for the TURN server.
"credentials": "a_password", # Optional password for the TURN server.
"credential": "a_password", # Optional password for the TURN server.
}
]
}