mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
update error usage
This commit is contained in:
parent
3f7ae1ccb6
commit
062aceb570
2 changed files with 5 additions and 9 deletions
|
@ -711,10 +711,7 @@ where
|
|||
.and_then(|_| self.inner.validate_allowed_method(req.head()))
|
||||
.and_then(|_| self.inner.validate_allowed_headers(req.head()))
|
||||
{
|
||||
return Either::Left(ok(req.into_response(
|
||||
WebResponseError::error_response(&e)
|
||||
.map_body(|_, body| body.into_body()),
|
||||
)));
|
||||
return Either::Left(ok(req.render_error(e)));
|
||||
}
|
||||
|
||||
// allowed headers
|
||||
|
@ -772,10 +769,7 @@ where
|
|||
if req.headers().contains_key(&header::ORIGIN) {
|
||||
// Only check requests with a origin header.
|
||||
if let Err(e) = self.inner.validate_origin(req.head()) {
|
||||
return Either::Left(ok(req.into_response(
|
||||
WebResponseError::error_response(&e)
|
||||
.map_body(|_, body| body.into_body()),
|
||||
)));
|
||||
return Either::Left(ok(req.render_error(e)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue