]> Untitled Git - lemmy.git/commitdiff
Changing another blacklisted to blocklisted.
authorDessalines <tyhou13@gmx.com>
Thu, 18 Jun 2020 01:29:10 +0000 (21:29 -0400)
committerDessalines <tyhou13@gmx.com>
Thu, 18 Jun 2020 01:29:10 +0000 (21:29 -0400)
server/src/apub/activities.rs

index a747ed21182a01178af096d8d08233a357ff37cb..b5bb9d76c7dffff589c05e65186f0e3514d1c05a 100644 (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());