소스 검색

changes RTCPeerConnection iceServers url property to urls

see https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/url
Andre Eckardt 8 년 전
부모
커밋
2b1a32479d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/util.js

+ 1 - 1
lib/util.js

@@ -1,4 +1,4 @@
-var defaultConfig = { iceServers: [{ url: "stun:stun.l.google.com:19302" }] };
+var defaultConfig = {'iceServers': [{ 'urls': 'stun:stun.l.google.com:19302' }]};
 var dataCount = 1;
 
 var BinaryPack = require("js-binarypack");