Fix bugs
This commit is contained in:
parent
3b1f773480
commit
f1fac8cea9
|
@ -346,6 +346,10 @@ public class ServiceDiscovery : MonoBehaviour
|
||||||
while (serviceQueue.Count > 0)
|
while (serviceQueue.Count > 0)
|
||||||
{
|
{
|
||||||
MdnsService service = serviceQueue.Dequeue();
|
MdnsService service = serviceQueue.Dequeue();
|
||||||
|
if (service == null)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
Debug.Log($"Invoking action with: {service}");
|
Debug.Log($"Invoking action with: {service}");
|
||||||
action?.Invoke(service);
|
action?.Invoke(service);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue