bugfixes / PCM removal

This commit is contained in:
NoobishSVK
2024-07-15 22:19:20 +02:00
parent 8b2f489fbe
commit 03fb77c8c4
13 changed files with 141 additions and 311 deletions
+2 -6
View File
@@ -73,12 +73,8 @@ function resolveDataBuffer(data, wss) {
}
if (receivedData.length) {
wss.clients.forEach((client) => {
if (client.readyState === WebSocket.OPEN) {
dataHandler.handleData(client, receivedData);
}
});
}
dataHandler.handleData(wss, receivedData);
};
}
function kickClient(ipAddress) {