Fixes one more reference, removes a variable.

This commit is contained in:
bgrozev 2016-01-19 16:47:29 -06:00
parent be01c2ec22
commit 9c9f1bbc1f
1 changed files with 4 additions and 5 deletions

View File

@ -246,10 +246,10 @@ JingleSessionPC.prototype.accept = function () {
pranswer.sdp = pranswer.sdp.replace('a=inactive', 'a=sendrecv');
}
var prsdp = new SDP(pranswer.sdp);
if (self.webrtcIceTcpDisable) {
if (this.webrtcIceTcpDisable) {
prsdp.removeTcpCandidates = true;
}
if (self.webrtcIceUdpDisable) {
if (this.webrtcIceUdpDisable) {
prsdp.removeUdpCandidates = true;
}
var accept = $iq({to: this.peerjid,
@ -569,13 +569,12 @@ JingleSessionPC.prototype.getSsrcOwner = function (ssrc) {
};
JingleSessionPC.prototype.setRemoteDescription = function (elem, desctype) {
var self = this;
//logger.log('setting remote description... ', desctype);
this.remoteSDP = new SDP('');
if (self.webrtcIceTcpDisable) {
if (this.webrtcIceTcpDisable) {
this.remoteSDP.removeTcpCandidates = true;
}
if (self.webrtcIceUdpDisable) {
if (this.webrtcIceUdpDisable) {
this.remoteSDP.removeUdpCandidates = true;
}