Fixes assigning discovered servers.
This commit is contained in:
parent
e0eca9b5f8
commit
3e9bd580cd
|
@ -611,7 +611,7 @@ Strophe.addConnectionPlugin('jingle', {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.ice_config.iceServers = iceservers;
|
this.connection.jingle.ice_config.iceServers = iceservers;
|
||||||
},
|
},
|
||||||
function (err) {
|
function (err) {
|
||||||
console.warn('getting turn credentials failed', err);
|
console.warn('getting turn credentials failed', err);
|
||||||
|
@ -1452,7 +1452,7 @@ function JingleSession(me, sid, connection) {
|
||||||
this.stopTime = null;
|
this.stopTime = null;
|
||||||
this.media_constraints = null;
|
this.media_constraints = null;
|
||||||
this.pc_constraints = null;
|
this.pc_constraints = null;
|
||||||
this.ice_config = {},
|
this.ice_config = {};
|
||||||
this.drip_container = [];
|
this.drip_container = [];
|
||||||
|
|
||||||
this.usetrickle = true;
|
this.usetrickle = true;
|
||||||
|
|
Loading…
Reference in New Issue