rtcpeerconnection
Advanced tools
Comparing version 4.0.0 to 4.1.0
{ | ||
"name": "rtcpeerconnection", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.", | ||
@@ -30,3 +30,3 @@ "main": "rtcpeerconnection.js", | ||
"tape": "^4.0.0", | ||
"travis-multirunner": "^2.5.0", | ||
"travis-multirunner": "^3.0.0", | ||
"testling": "^1.7.1" | ||
@@ -33,0 +33,0 @@ }, |
@@ -6,3 +6,3 @@ var util = require('util'); | ||
var WildEmitter = require('wildemitter'); | ||
var peerconn = require('traceablepeerconnection'); | ||
var Peerconn = require('traceablepeerconnection'); | ||
var adapter = require('webrtc-adapter-test'); | ||
@@ -116,3 +116,3 @@ | ||
this.pc = new peerconn(config, constraints); | ||
this.pc = new Peerconn(config, constraints); | ||
@@ -307,6 +307,4 @@ this.getLocalStreams = this.pc.getLocalStreams.bind(this.pc); | ||
var mediaConstraints = hasConstraints && constraints ? constraints : { | ||
mandatory: { | ||
OfferToReceiveAudio: true, | ||
OfferToReceiveVideo: true | ||
} | ||
offerToReceiveAudio: 1, | ||
offerToReceiveVideo: 1 | ||
}; | ||
@@ -313,0 +311,0 @@ cb = hasConstraints ? cb : constraints; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
234383
16
6403