Procházet zdrojové kódy

Merge pull request #35 from jitsi/send-ice-candidates-single-vs-plural

Uses sendIceCandidates instead of sendIceCandidate as the rest of the…
dev1
George Politis před 9 roky
rodič
revize
c81a80bb26
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      modules/xmpp/JingleSessionPC.js

+ 1
- 1
modules/xmpp/JingleSessionPC.js Zobrazit soubor

@@ -340,7 +340,7 @@ JingleSessionPC.prototype.sendIceCandidate = function (candidate) {
340 340
                 this.drip_container.push(candidate);
341 341
                 return;
342 342
             } else {
343
-                self.sendIceCandidate([candidate]);
343
+                self.sendIceCandidates([candidate]);
344 344
             }
345 345
         }
346 346
     } else {

Načítá se…
Zrušit
Uložit