Changing another blacklisted to blocklisted.

This commit is contained in:
Dessalines 2020-06-17 21:29:10 -04:00
parent 68bcc26ff6
commit fd6a040568

View file

@ -57,7 +57,7 @@ where
for t in to {
let to_url = Url::parse(&t)?;
if !is_apub_id_valid(&to_url) {
debug!("Not sending activity to {} (invalid or blacklisted)", t);
debug!("Not sending activity to {} (invalid or blocklisted)", t);
continue;
}
let request = Request::post(t).header("Host", to_url.domain().unwrap());