1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

set response error body

This commit is contained in:
Nikolay Kim 2019-04-03 19:07:25 -07:00
parent 7d6085ddbd
commit 954fe21751

View File

@ -54,7 +54,8 @@ impl Response<Body> {
/// Constructs an error response /// Constructs an error response
#[inline] #[inline]
pub fn from_error(error: Error) -> Response { pub fn from_error(error: Error) -> Response {
let mut resp = error.as_response_error().error_response(); let resp = error.as_response_error().error_response();
let mut resp = resp.set_body(Body::from(format!("{}", error)));
resp.error = Some(error); resp.error = Some(error);
resp resp
} }