Browse Source
Show error from cpp-httplib when we don't have a response to read (report errors while connecting to API) (#8999)
Co-authored-by: Kyle Kienapfel <Docteh@users.noreply.github.com>
pull/15/merge
Kyle Kienapfel
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/web_service/web_backend.cpp
|
|
|
@ -111,7 +111,8 @@ struct Client::Impl { |
|
|
|
httplib::Error error; |
|
|
|
|
|
|
|
if (!cli->send(request, response, error)) { |
|
|
|
LOG_ERROR(WebService, "{} to {} returned null", method, host + path); |
|
|
|
LOG_ERROR(WebService, "{} to {} returned null (httplib Error: {})", method, host + path, |
|
|
|
httplib::to_string(error)); |
|
|
|
return WebResult{WebResult::Code::LibError, "Null response", ""}; |
|
|
|
} |
|
|
|
|
|
|
|
|