From 1ab67c2f72b034d8168174b374d5770cf50a9935 Mon Sep 17 00:00:00 2001 From: paweldomas Date: Wed, 11 Nov 2015 11:14:41 -0600 Subject: [PATCH] CONNECTION_INTERRUPTED event will now be generated if we've ever been in stable state(we can go into "unstable" state after muting video and connection problems screen will not be displayed). (cherry picked from commit f559bd1ba45fd726e70b30ce6743f19d1f44bd9a) # Conflicts: # modules/xmpp/JingleSessionPC.js --- modules/xmpp/JingleSessionPC.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/xmpp/JingleSessionPC.js b/modules/xmpp/JingleSessionPC.js index f509fc317..099267cbf 100644 --- a/modules/xmpp/JingleSessionPC.js +++ b/modules/xmpp/JingleSessionPC.js @@ -86,7 +86,10 @@ JingleSessionPC.prototype.doInitialize = function () { this.hadstuncandidate = false; this.hadturncandidate = false; this.lasticecandidate = false; + // True if reconnect is in progress this.isreconnect = false; + // Set to true if the connection was ever stable + this.wasstable = false; this.peerconnection = new TraceablePeerConnection( this.connection.jingle.ice_config, @@ -116,6 +119,9 @@ JingleSessionPC.prototype.doInitialize = function () { }; this.peerconnection.onsignalingstatechange = function (event) { if (!(self && self.peerconnection)) return; + if (self.peerconnection.signalingState === 'stable') { + self.wasstable = true; + } self.updateModifySourcesQueue(); }; /** @@ -140,7 +146,7 @@ JingleSessionPC.prototype.doInitialize = function () { case 'disconnected': self.isreconnect = true; // Informs interested parties that the connection has been interrupted. - if (self.peerconnection.signalingState === 'stable') + if (self.wasstable) self.room.eventEmitter.emit(XMPPEvents.CONNECTION_INTERRUPTED); break; case 'failed':