mirror of
https://git.asonix.dog/asonix/http-signature-normalization.git
synced 2024-11-13 05:01:17 +00:00
Clippy
This commit is contained in:
parent
92a6f53dd6
commit
6364794c8e
1 changed files with 8 additions and 10 deletions
|
@ -206,16 +206,14 @@ where
|
|||
E: From<SignError>,
|
||||
K: Display,
|
||||
{
|
||||
if config.set_date {
|
||||
if !req.headers().contains_key("date") {
|
||||
req.headers_mut().insert(
|
||||
"date",
|
||||
HttpDate::from(SystemTime::now())
|
||||
.to_string()
|
||||
.try_into()
|
||||
.map_err(SignError::from)?,
|
||||
);
|
||||
}
|
||||
if config.set_date && !req.headers().contains_key("date") {
|
||||
req.headers_mut().insert(
|
||||
"date",
|
||||
HttpDate::from(SystemTime::now())
|
||||
.to_string()
|
||||
.try_into()
|
||||
.map_err(SignError::from)?,
|
||||
);
|
||||
}
|
||||
let mut bt = std::collections::BTreeMap::new();
|
||||
for (k, v) in req.headers().iter() {
|
||||
|
|
Loading…
Reference in a new issue