cargo clippy and cargo fmt

This commit is contained in:
BlockListed 2023-09-09 19:22:58 +02:00
parent d1cb726996
commit 6375a20f2f
No known key found for this signature in database
GPG Key ID: 2D204777C477B588
1 changed files with 4 additions and 5 deletions

View File

@ -403,11 +403,10 @@ impl<'r> FromRequest<'r> for HostInfo {
get_main_host().into()
};
let host_info = get_host_info(host.as_ref())
.unwrap_or_else(|| {
log::debug!("Falling back to default domain, because {host} was not in domains.");
get_host_info(&get_main_host()).expect("Main domain doesn't have entry!")
});
let host_info = get_host_info(host.as_ref()).unwrap_or_else(|| {
log::debug!("Falling back to default domain, because {host} was not in domains.");
get_host_info(&get_main_host()).expect("Main domain doesn't have entry!")
});
host_info
} else if let Some(referer) = headers.get_one("Referer") {