Browse Source

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 9 years ago
parent
commit
c81a80bb26
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/xmpp/JingleSessionPC.js

+ 1
- 1
modules/xmpp/JingleSessionPC.js View File

340
                 this.drip_container.push(candidate);
340
                 this.drip_container.push(candidate);
341
                 return;
341
                 return;
342
             } else {
342
             } else {
343
-                self.sendIceCandidate([candidate]);
343
+                self.sendIceCandidates([candidate]);
344
             }
344
             }
345
         }
345
         }
346
     } else {
346
     } else {

Loading…
Cancel
Save