From f2ca2b4285e756235dd8f834d0b0437a679619ef Mon Sep 17 00:00:00 2001 From: Nutomic Date: Tue, 12 Nov 2024 11:33:21 +0100 Subject: [PATCH] fix --- crates/apub/src/objects/community.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.