diff --git a/http-get/src/main.rs b/http-get/src/main.rs index d3fb29c..0bb4479 100644 --- a/http-get/src/main.rs +++ b/http-get/src/main.rs @@ -7,7 +7,7 @@ fn http_get_main(url: &str) -> Result<(), Box> { // Send the HTTP request and get a response. let mut response = reqwest::get(url)?; if !response.status().is_success() { - Err(format!("{}", response.status()))?; + return Err(format!("{}", response.status()).into()); } // Read the response body and write it to stdout.