1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +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
#[inline]
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
}