This commit is contained in:
Santiago Lo Coco 2024-11-10 21:58:12 +01:00
parent 3b1f773480
commit f1fac8cea9
1 changed files with 4 additions and 0 deletions

View File

@ -346,6 +346,10 @@ public class ServiceDiscovery : MonoBehaviour
while (serviceQueue.Count > 0)
{
MdnsService service = serviceQueue.Dequeue();
if (service == null)
{
continue;
}
Debug.Log($"Invoking action with: {service}");
action?.Invoke(service);
}