mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 16:17:57 -05:00
Merge pull request #6486 from CaptV0rt3x/httplib
externals: httplib: replace custom httplib header with upstream as submodule
This commit is contained in:
@ -100,8 +100,9 @@ struct Client::Impl {
|
||||
request.body = data;
|
||||
|
||||
httplib::Response response;
|
||||
httplib::Error error;
|
||||
|
||||
if (!cli->send(request, response)) {
|
||||
if (!cli->send(request, response, error)) {
|
||||
LOG_ERROR(WebService, "{} to {} returned null", method, host + path);
|
||||
return WebResult{WebResult::Code::LibError, "Null response", ""};
|
||||
}
|
||||
|
Reference in New Issue
Block a user