#2 update
All checks were successful
Deploy / deploy (push) Successful in 45s

This commit is contained in:
Никита Круглицкий 2025-10-02 04:33:29 +06:00
parent 496e2ec4ef
commit e66493b733

View File

@ -49,6 +49,14 @@ io.on("connection", (socket) => {
console.log("Client connected:", socket.id);
socket.emit('producers', Array.from(producers.values()).map(producer => {
console.log(producer);
return {
producerId: producer.id,
kind: producer.kind,
}
}))
console.log(Array.from(producers.values()).map(producer => {
return {
producerId: producer.id,
kind: producer.kind,