Remove random debug message

This commit is contained in:
osmarks 2018-10-06 11:30:54 +01:00
parent ffdec741ab
commit ab2760fb28
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ const broadcast = (wss, msg, sender) => {
if (socket.type === "client") { send = send && (socket.channels.includes(msg.channel) || socket.channels.includes(wildcardChannel)) && socket !== sender }
else if (socket.type === "peer") { send = send && true }
if (send) {
console.log("SENDING")
socket.send(JSON.stringify(toSend))
}
})