mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-21 16:49:19 +01:00
boss: Fix BOSS not honoring the proxy_server setting (#1344)
This commit is contained in:
parent
a05bdb172d
commit
adffd53dbd
@ -137,6 +137,10 @@ namespace iosu
|
|||||||
this->task_settings.taskType = settings->taskType;
|
this->task_settings.taskType = settings->taskType;
|
||||||
|
|
||||||
curl = std::shared_ptr<CURL>(curl_easy_init(), curl_easy_cleanup);
|
curl = std::shared_ptr<CURL>(curl_easy_init(), curl_easy_cleanup);
|
||||||
|
if(GetConfig().proxy_server.GetValue() != "")
|
||||||
|
{
|
||||||
|
curl_easy_setopt(curl.get(), CURLOPT_PROXY, GetConfig().proxy_server.GetValue().c_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user