diff --git a/server/utils/sockets.js b/server/utils/sockets.js index aa10721..0256298 100644 --- a/server/utils/sockets.js +++ b/server/utils/sockets.js @@ -128,14 +128,9 @@ const Sockets = function () { //Do some cleanup here }); }; + + // Sería bueno quitar este cógigo comentado - /* TO DO: Notify chat message - sockets.notifyAll = (data) => { - for (let ws of clients) { - ws.send(data); - } - }; - */ return sockets; };