소스 검색

removed useless window bind for UDP constructor

oscar 1 개월 전
부모
커밋
500924a895
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dSockets.js

+ 1 - 1
dSockets.js

@@ -2,6 +2,6 @@ export async function autoConfSockets() {
   return {
     tcpSocket: TCPSocket,
     tcpServer: TCPServerSocket,
-    udpSocket: UDPSocket.bind(window),
+    udpSocket: UDPSocket,
   };
 }