Removes obsolete/unused variable.

pull/299/head
George Politis 10 years ago
parent b2cff193a9
commit 854c8e5f2f
  1. 3
      modules/xmpp/JingleSession.js
  2. 2
      modules/xmpp/strophe.emuc.js

@ -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) {
var self = this;
if (this.state !== null) {

@ -630,8 +630,6 @@ module.exports = function(XMPP, eventEmitter) {
//console.log(jid, 'assoc ssrc', ssrc.getAttribute('type'), ssrc.getAttribute('ssrc'));
var ssrcV = ssrc.getAttribute('ssrc');
self.ssrc2jid[ssrcV] = from;
JingleSession.notReceivedSSRCs.push(ssrcV);
var type = ssrc.getAttribute('type');

Loading…
Cancel
Save