it's possible to add the local flag when emitting to a room ```js // sending to all clients on this node (when using multiple nodes) io.to(channel).local .emit(message.event, channel, message.data) ``` however, when broadcasting from a socket instance it's not possible to add a local flag is there any way to achieve the same behavior? ```js // this wont work socket.broadcast.to(channel).local .emit(message.event, channel, message.data); ``` thank you