From 5fab3bdadc6b859cd3867ee5dc41499ec1498a17 Mon Sep 17 00:00:00 2001 From: "Martin D." Date: Sun, 8 Mar 2015 21:58:43 -0400 Subject: [PATCH] Case change --- webrtc/RTCPeerConnection-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/RTCPeerConnection-tests.ts b/webrtc/RTCPeerConnection-tests.ts index dd81741485..f25ad81dfa 100644 --- a/webrtc/RTCPeerConnection-tests.ts +++ b/webrtc/RTCPeerConnection-tests.ts @@ -4,7 +4,7 @@ var config: RTCConfiguration = { iceServers: [{ url: "stun.l.google.com:19302" }] }; var constraints: RTCMediaConstraints = - { mandatory: { OfferToReceiveAudio: true, OfferToReceiveVideo: true } }; + { mandatory: { offerToReceiveAudio: true, offerToReceiveVideo: true } }; var peerConnection: RTCPeerConnection = new RTCPeerConnection(config, constraints);