Disable usage of STUN server (it should not be needed for local)
This commit is contained in:
@ -51,7 +51,7 @@
|
||||
sdpSemantics: 'unified-plan'
|
||||
};
|
||||
|
||||
if (!document.getElementById('use-stun') || document.getElementById('use-stun').checked) {
|
||||
if (document.getElementById('use-stun') && document.getElementById('use-stun').checked) {
|
||||
config.iceServers = [{urls: ['stun:stun.l.google.com:19302']}];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user