Tyler Smith
Tyler Smith
Trying to implement in a Sails.io project but it's taking pages over a minute to render. Any suggestions?
## Describe the bug ``` m.clientDiscovery = { port: CreateObject("roMessagePort"), address: CreateObject("roSocketAddress"), socket: CreateObject("roDatagramSocket"), urlTransfer: CreateObject("roUrlTransfer") } m.clientDiscovery.address.SetAddress("255.255.255.255:7359") m.clientDiscovery.urlTransfer.SetPort(m.clientDiscoveryPort) m.clientDiscovery.socket.SetMessagePort(m.clientDiscovery.port) m.clientDiscovery.socket.SetSendToAddress(m.clientDiscovery.address) ``` I believe `m.clientDiscovery.urlTransfer.SetPort(m.clientDiscoveryPort)` should be `m.clientDiscovery.urlTransfer.SetPort(m.clientDiscovery.port)`