Use IpAddress in the apiURL received by multicast

This commit is contained in:
Santiago Lo Coco 2024-11-06 22:57:44 +01:00
parent 015d7b246c
commit f6acdb6852
1 changed files with 2 additions and 1 deletions

View File

@ -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());
}
);