Removes obsolete/unused variable.
This commit is contained in:
parent
b2cff193a9
commit
854c8e5f2f
|
@ -69,9 +69,6 @@ JingleSession.prototype.updateModifySourcesQueue = function() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//TODO: this array must be removed when firefox implement multistream support
|
|
||||||
JingleSession.notReceivedSSRCs = [];
|
|
||||||
|
|
||||||
JingleSession.prototype.initiate = function (peerjid, isInitiator) {
|
JingleSession.prototype.initiate = function (peerjid, isInitiator) {
|
||||||
var self = this;
|
var self = this;
|
||||||
if (this.state !== null) {
|
if (this.state !== null) {
|
||||||
|
|
|
@ -630,8 +630,6 @@ module.exports = function(XMPP, eventEmitter) {
|
||||||
//console.log(jid, 'assoc ssrc', ssrc.getAttribute('type'), ssrc.getAttribute('ssrc'));
|
//console.log(jid, 'assoc ssrc', ssrc.getAttribute('type'), ssrc.getAttribute('ssrc'));
|
||||||
var ssrcV = ssrc.getAttribute('ssrc');
|
var ssrcV = ssrc.getAttribute('ssrc');
|
||||||
self.ssrc2jid[ssrcV] = from;
|
self.ssrc2jid[ssrcV] = from;
|
||||||
JingleSession.notReceivedSSRCs.push(ssrcV);
|
|
||||||
|
|
||||||
|
|
||||||
var type = ssrc.getAttribute('type');
|
var type = ssrc.getAttribute('type');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue