rtcpeerconnection
Advanced tools
Comparing version 2.3.1 to 2.3.2
{ | ||
"name": "rtcpeerconnection", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.", | ||
@@ -5,0 +5,0 @@ "main": "rtcpeerconnection.js", |
@@ -352,9 +352,9 @@ var _ = require('underscore'); | ||
}; | ||
if (event.candidate.indexOf('typ srflx') !== -1) { | ||
this.hadLocalStunCandidate = true; | ||
} | ||
else if (event.candidate.indexOf('typ relay') !== -1) { | ||
this.hadLocalRelayCandidate = true; | ||
} | ||
} | ||
if (ice.candidate.indexOf('typ srflx') !== -1) { | ||
this.hadLocalStunCandidate = true; | ||
} | ||
else if (ice.candidate.indexOf('typ relay') !== -1) { | ||
this.hadLocalRelayCandidate = true; | ||
} | ||
@@ -361,0 +361,0 @@ this.emit('ice', expandedCandidate); |
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
136993