Explorar el Código

removed useless window bind for UDP constructor

oscar hace 1 mes
padre
commit
500924a895
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,
   };
 }