I have the following Code which I call from StartCoroutine
IEnumerator WaitForRequest(WWW www)
{
yield return www;
Debug.Log(www.text);
}
For the most part this works. The web request is being made ( I can debug it on my server) and everything works fine. But sometimes it doesn´t. In thouse cases I have the exact same web request an when I debug I can see that the www has the correct text (the web request has been made) but the Debug.Log is never reached.
Does anybody have any idea what could be the problem?
Thanks in advance!