Use IpAddress in the apiURL received by multicast
This commit is contained in:
parent
015d7b246c
commit
f6acdb6852
|
@ -183,6 +183,7 @@ public class EndpointLoader : MonoBehaviour
|
||||||
yield break;
|
yield break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Debug.Log($"Loading endpoints from {apiUrl}");
|
||||||
var request = new UnityWebRequest(apiUrl, UnityWebRequest.kHttpVerbGET);
|
var request = new UnityWebRequest(apiUrl, UnityWebRequest.kHttpVerbGET);
|
||||||
request.downloadHandler = new DownloadHandlerBuffer();
|
request.downloadHandler = new DownloadHandlerBuffer();
|
||||||
request.SetRequestHeader("Content-Type", "application/json");
|
request.SetRequestHeader("Content-Type", "application/json");
|
||||||
|
@ -259,7 +260,7 @@ public class EndpointLoader : MonoBehaviour
|
||||||
service,
|
service,
|
||||||
() =>
|
() =>
|
||||||
{
|
{
|
||||||
apiUrl = $"http://{service.Host}:{service.Port}{service.Path}";
|
apiUrl = $"http://{service.IpAddress}:{service.Port}{service.Path}";
|
||||||
StartCoroutine(LoadEndpoints());
|
StartCoroutine(LoadEndpoints());
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue