diff --git a/crates/apub/src/objects/community.rs b/crates/apub/src/objects/community.rs index 66bd00f39..f4dc6a3e0 100644 --- a/crates/apub/src/objects/community.rs +++ b/crates/apub/src/objects/community.rs @@ -195,7 +195,7 @@ impl Object for ApubCommunity { // Need to fetch mods synchronously, otherwise fetching a post in community with // `posting_restricted_to_mods` can fail if mods havent been fetched yet. if let Some(moderators) = group.attributed_to { - moderators.dereference(&community, &context).await.ok(); + moderators.dereference(&community, context).await.ok(); } // These collections are not necessary for Lemmy to work, so ignore errors.