소스 검색

Fix connection receiver

Just to fix the connection receiver to successfully send a message to the connection requester
Jonathan Mayol 7 년 전
부모
커밋
f14f54cc49
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      examples/chat.html

+ 3 - 0
examples/chat.html

@@ -61,6 +61,9 @@ function connect(c) {
     $('.filler').hide();
     $('#connections').append(chatbox);
 
+    // Just to fix the connection receiver to successfully send a message to the connection requester
+    c.open = true;
+    
     c.on('data', function(data) {
       messages.append('<div><span class="peer">' + c.peer + '</span>: ' + data +
         '</div>');