Removes obsolete/unused variable.

This commit is contained in:
George Politis 2015-05-18 19:07:56 +02:00
parent b2cff193a9
commit 854c8e5f2f
2 changed files with 0 additions and 5 deletions

View File

@ -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) {

View File

@ -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');