]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/fetcher/mod.rs
Be more explicit about returning deleted actors or not (#2335)
[lemmy.git] / crates / apub / src / fetcher / mod.rs
index 072cf7dc7ea370c3dbbc3b183a069bc2401be2b2..8daef4331ac32b982b826f76dc62b9ddf9625d43 100644 (file)
@@ -58,7 +58,7 @@ where
     let identifier = identifier.to_string();
     Ok(
       blocking(context.pool(), move |conn| {
-        DbActor::read_from_name(conn, &identifier)
+        DbActor::read_from_name(conn, &identifier, false)
       })
       .await??,
     )