rtcpeerconnection
Advanced tools
Comparing version 2.3.0 to 2.3.1
{ | ||
"name": "rtcpeerconnection", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.", | ||
@@ -5,0 +5,0 @@ "main": "rtcpeerconnection.js", |
@@ -122,6 +122,6 @@ var _ = require('underscore'); | ||
if (candidate.type === 'srflx') { | ||
this.hadRemoteStunCandidate = true; | ||
self.hadRemoteStunCandidate = true; | ||
} | ||
else if (candidate.type === 'relay') { | ||
this.hadRemoteRelayCandidate = true; | ||
self.hadRemoteRelayCandidate = true; | ||
} | ||
@@ -133,6 +133,6 @@ }); | ||
if (update.candidate.candidate.indexOf('typ srflx') !== -1) { | ||
this.hadRemoteStunCandidate = true; | ||
self.hadRemoteStunCandidate = true; | ||
} | ||
else if (update.candidate.candidate.indexOf('typ relay') !== -1) { | ||
this.hadRemoteRelayCandidate = true; | ||
self.hadRemoteRelayCandidate = true; | ||
} | ||
@@ -139,0 +139,0 @@ } |
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