webrtc-adapter
Advanced tools
Comparing version 8.1.0 to 8.1.1
@@ -330,3 +330,3 @@ /* | ||
} else if (offerOptions.offerToReceiveAudio === true && !audioTransceiver) { | ||
this.addTransceiver('audio'); | ||
this.addTransceiver('audio', { direction: 'recvonly' }); | ||
} | ||
@@ -356,3 +356,3 @@ | ||
} else if (offerOptions.offerToReceiveVideo === true && !videoTransceiver) { | ||
this.addTransceiver('video'); | ||
this.addTransceiver('video', { direction: 'recvonly' }); | ||
} | ||
@@ -359,0 +359,0 @@ } |
{ | ||
"name": "webrtc-adapter", | ||
"version": "8.1.0", | ||
"version": "8.1.1", | ||
"description": "A shim to insulate apps from WebRTC spec changes and browser prefix differences", | ||
@@ -23,3 +23,3 @@ "license": "BSD-3-Clause", | ||
"prepublishonly": "npm test", | ||
"test": "grunt && grunt downloadBrowser && mocha test/unit && karma start test/karma.conf.js", | ||
"test": "grunt && mocha test/unit && grunt downloadBrowser && karma start test/karma.conf.js", | ||
"lint-and-unit-tests": "grunt && mocha test/unit", | ||
@@ -26,0 +26,0 @@ "e2e-tests": "grunt && grunt downloadBrowser && karma start test/karma.conf.js" |
@@ -314,3 +314,3 @@ /* | ||
!audioTransceiver) { | ||
this.addTransceiver('audio'); | ||
this.addTransceiver('audio', {direction: 'recvonly'}); | ||
} | ||
@@ -341,3 +341,3 @@ | ||
!videoTransceiver) { | ||
this.addTransceiver('video'); | ||
this.addTransceiver('video', {direction: 'recvonly'}); | ||
} | ||
@@ -344,0 +344,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
467655
35
0