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:
parent
7d6085ddbd
commit
954fe21751
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user