From f6acdb68525322769c2ed230fec7b1dada63fc09 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 6 Nov 2024 22:57:44 +0100 Subject: [PATCH] Use IpAddress in the apiURL received by multicast --- Assets/Scripts/EndpointLoader.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/EndpointLoader.cs b/Assets/Scripts/EndpointLoader.cs index f218af1..c761084 100644 --- a/Assets/Scripts/EndpointLoader.cs +++ b/Assets/Scripts/EndpointLoader.cs @@ -183,6 +183,7 @@ public class EndpointLoader : MonoBehaviour yield break; } + Debug.Log($"Loading endpoints from {apiUrl}"); var request = new UnityWebRequest(apiUrl, UnityWebRequest.kHttpVerbGET); request.downloadHandler = new DownloadHandlerBuffer(); request.SetRequestHeader("Content-Type", "application/json"); @@ -259,7 +260,7 @@ public class EndpointLoader : MonoBehaviour service, () => { - apiUrl = $"http://{service.Host}:{service.Port}{service.Path}"; + apiUrl = $"http://{service.IpAddress}:{service.Port}{service.Path}"; StartCoroutine(LoadEndpoints()); } );