]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/activities/community/collection_remove.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / apub / src / protocol / activities / community / collection_remove.rs
index f69fdc6a7b7e7438672a6f61e82c8ecb65ac06fe..9609517325438069bd7ae67267e8fb0c4dcf02b3 100644 (file)
@@ -35,7 +35,7 @@ pub struct CollectionRemove {
 impl InCommunity for CollectionRemove {
   async fn community(&self, context: &Data<LemmyContext>) -> Result<ApubCommunity, LemmyError> {
     let (community, _) =
-      Community::get_by_collection_url(context.pool(), &self.clone().target.into()).await?;
+      Community::get_by_collection_url(&mut context.pool(), &self.clone().target.into()).await?;
     if let Some(audience) = &self.audience {
       verify_community_matches(audience, community.actor_id.clone())?;
     }