minor fixes
authorjordan lavatai <jordanlavatai@gmail.com>
Tue, 4 Jul 2017 23:40:30 +0000 (16:40 -0700)
committerjordan lavatai <jordanlavatai@gmail.com>
Tue, 4 Jul 2017 23:40:30 +0000 (16:40 -0700)
client.js

index cb3872f..676861a 100644 (file)
--- a/client.js
+++ b/client.js
@@ -85,7 +85,7 @@ function pollServerForAnswer(url, data, resolve, reject) {
 /* Poll server for ice candidates until ice is complete */
 function pollServerForICECandidate(cpc) {
   window.setInterval(() => {
-    if (cpc.iceGatheringState.localeCompare('complete') === 0) {
+    if (cpc.iceGatheringState.localeCompare('complete') !== 0) {
       return new Promise((resolve, reject) => {
          console.log('Client: Requesting ICE Candidates from server')
          const request = new XMLHttpRequest()