From: Dessalines Date: Thu, 18 Jun 2020 01:29:10 +0000 (-0400) Subject: Changing another blacklisted to blocklisted. X-Git-Url: http://these/git/%24%7Bsite?a=commitdiff_plain;h=fd6a040568239d2e6949394fdc0ce0f7ac70275c;p=lemmy.git Changing another blacklisted to blocklisted. --- diff --git a/server/src/apub/activities.rs b/server/src/apub/activities.rs index a747ed21..b5bb9d76 100644 --- a/server/src/apub/activities.rs +++ b/server/src/apub/activities.rs @@ -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());