BlockListed
2 years ago
No known key found for this signature in database
GPG Key ID: 2D204777C477B588
1 changed files with
4 additions and
5 deletions
-
src/auth.rs
|
@ -403,11 +403,10 @@ impl<'r> FromRequest<'r> for HostInfo { |
|
|
get_main_host().into() |
|
|
get_main_host().into() |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
let host_info = get_host_info(host.as_ref()) |
|
|
let host_info = get_host_info(host.as_ref()).unwrap_or_else(|| { |
|
|
.unwrap_or_else(|| { |
|
|
log::debug!("Falling back to default domain, because {host} was not in domains."); |
|
|
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!") |
|
|
get_host_info(&get_main_host()).expect("Main domain doesn't have entry!") |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
host_info |
|
|
host_info |
|
|
} else if let Some(referer) = headers.get_one("Referer") { |
|
|
} else if let Some(referer) = headers.get_one("Referer") { |
|
|