Include object id when logging apub errors
This commit is contained in:
parent
d5d99fa3b9
commit
897263e5a3
1 changed files with 2 additions and 2 deletions
|
@ -80,11 +80,11 @@ fn check_is_apub_id_valid(apub_id: &Url) -> Result<(), LemmyError> {
|
||||||
let host = apub_id.host_str().context(location_info!())?;
|
let host = apub_id.host_str().context(location_info!())?;
|
||||||
let host_as_ip = host.parse::<IpAddr>();
|
let host_as_ip = host.parse::<IpAddr>();
|
||||||
if host == "localhost" || host_as_ip.is_ok() {
|
if host == "localhost" || host_as_ip.is_ok() {
|
||||||
return Err(anyhow!("invalid hostname: {:?}", host).into());
|
return Err(anyhow!("invalid hostname {}: {}", host, apub_id).into());
|
||||||
}
|
}
|
||||||
|
|
||||||
if apub_id.scheme() != Settings::get().get_protocol_string() {
|
if apub_id.scheme() != Settings::get().get_protocol_string() {
|
||||||
return Err(anyhow!("invalid apub id scheme: {:?}", apub_id.scheme()).into());
|
return Err(anyhow!("invalid apub id scheme {}: {}", apub_id.scheme(), apub_id).into());
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut allowed_instances = Settings::get().get_allowed_instances();
|
let mut allowed_instances = Settings::get().get_allowed_instances();
|
||||||
|
|
Loading…
Reference in a new issue