mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-01-08 12:35:27 +00:00
appease clippy
This commit is contained in:
parent
3a4c2f2cf9
commit
2746e088ae
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ impl Blog {
|
||||||
.select(blogs::custom_domain)
|
.select(blogs::custom_domain)
|
||||||
.load::<Option<String>>(conn)
|
.load::<Option<String>>(conn)
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map(|res| res.into_iter().map(|s| s.unwrap()).collect::<Vec<_>>())
|
.map(|res| res.into_iter().map(Option::unwrap).collect::<Vec<_>>())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue