Hello I just download the last version of Unity LTS (Unity 2020.3.11f1)
I have a little function that check a website, everything worked fini with previous version.
But now I have the error :
“Curl error 61: Unrecognized content encoding type. libcurl understands identity content encodings.”
Here is my code
public IEnumerator myFunction(string word)
{
UnityWebRequest webRequest = UnityWebRequest.Get("https://1mot.net/" + word);
yield return webRequest.SendWebRequest();
if (webRequest.result == UnityWebRequest.Result.ConnectionError)
{
Debug.Log("Error: " + webRequest.error);
}
}
How can I fix that ?