Update axum-macros/src/from_request.rs

Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
This commit is contained in:
Zheng Li 2024-09-28 18:25:36 +08:00 committed by GitHub
parent aac67f1152
commit d9f2035e7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -633,7 +633,7 @@ fn extract_fields(
quote_spanned! {ty_span=>
#member: {
<#field_ty as ::axum::extract::FromRequest<#trait_generics>>::from_request(req, state)
<#field_ty as ::axum::extract::FromRequest<#trait_generics, _>>::from_request(req, state)
.await
.map(#into_inner)
.map_err(#map_err)?