Skip to content

Commit f48cfb9

Browse files
Clippy
1 parent 89a0735 commit f48cfb9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/validate_incoming.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ impl MAuthInfo {
107107
}
108108

109109
let new_body = axum::body::Body::from(body_bytes);
110-
let new_request = Request::from_parts(parts, new_body);
111-
new_request
110+
Request::from_parts(parts, new_body)
112111
} else {
113112
Request::from_parts(parts, body)
114113
}

0 commit comments

Comments
 (0)