You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function createSucceeded(desc) {
var listener;
connection.addEventListener('icecandidate', listener = function(event) {
var candidate = event.candidate;
if (! candidate) { //-- Never happens
may be use promise?
The text was updated successfully, but these errors were encountered:
event.candidate will not be false, last event's candidate will be undefined when ice gathering is completed.
I feel you might also be seeing issues like in #432
function createSucceeded(desc) {
var listener;
connection.addEventListener('icecandidate', listener = function(event) {
var candidate = event.candidate;
if (! candidate) { //-- Never happens
may be use promise?
The text was updated successfully, but these errors were encountered: