We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1685ea commit 026d547Copy full SHA for 026d547
src/Cemu/napi/napi_helper.cpp
@@ -107,6 +107,7 @@ CurlRequestHelper::CurlRequestHelper()
107
108
curl_easy_setopt(m_curl, CURLOPT_FOLLOWLOCATION, 1);
109
curl_easy_setopt(m_curl, CURLOPT_MAXREDIRS, 2);
110
+ curl_easy_setopt(m_curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
111
112
if(GetConfig().proxy_server.GetValue() != "")
113
{
@@ -263,6 +264,7 @@ CurlSOAPHelper::CurlSOAPHelper(NetworkService service)
263
264
m_curl = curl_easy_init();
265
curl_easy_setopt(m_curl, CURLOPT_WRITEFUNCTION, __curlWriteCallback);
266
curl_easy_setopt(m_curl, CURLOPT_WRITEDATA, this);
267
268
269
// SSL
270
if (!IsNetworkServiceSSLDisabled(service))
0 commit comments