src/client/http_client.rs - H2Client: fix error message in download()
This commit is contained in:
parent
c2a5a9f353
commit
44f59dc731
|
@ -1106,10 +1106,8 @@ impl H2Client {
|
|||
|
||||
let status = resp.status();
|
||||
if !status.is_success() {
|
||||
H2Client::h2api_response(resp)
|
||||
.map(|_| Err(format_err!("unknown error")))
|
||||
.await?;
|
||||
unreachable!();
|
||||
H2Client::h2api_response(resp).await?; // raise error
|
||||
unreachable!();
|
||||
}
|
||||
|
||||
let mut body = resp.into_body();
|
||||
|
|
Loading…
Reference in New Issue