fix(assist): fixed request_control broadcast

This commit is contained in:
Alexander Zavorotynskiy 2023-06-02 15:59:58 +02:00 committed by nick-delirium
parent 81d55a7699
commit db9530f1fa

View file

@ -380,7 +380,7 @@ module.exports = {
io.to(socket.id).emit(EVENTS_DEFINITION.emit.NO_SESSIONS);
} else {
debug && console.log("message sent");
io.to(socketId).emit(eventName, socket.id, args[0].data);
io.to(socketId).emit(eventName, socket.id, args[0]);
}
}
});