Browse Source

fix(JitsiConference): rename p2p failed event

It should not be confused with the ICE state events added in
the previous commit.
dev1
paweldomas 8 years ago
parent
commit
106530efb1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      JitsiConference.js

+ 1
- 1
JitsiConference.js View File

@@ -1857,7 +1857,7 @@ JitsiConference.prototype._onIceConnectionFailed = function(session) {
1857 1857
     // eventually come up with the new offer (at least for the time being).
1858 1858
     if (session.isP2P) {
1859 1859
         if (this.p2pJingleSession && this.p2pJingleSession.isInitiator) {
1860
-            Statistics.sendEventToAll('p2p.ice_failed');
1860
+            Statistics.sendEventToAll('p2p.failed');
1861 1861
         }
1862 1862
         this._stopP2PSession('connectivity-error', 'ICE FAILED');
1863 1863
     }

Loading…
Cancel
Save