]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/activities/community/collection_add.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / apub / src / protocol / activities / community / collection_add.rs
index f3943e31c07737def27a6e95365b31bcc595c071..edf67740a6481562d7fc8bffc3cf3a7f425fcd7d 100644 (file)
@@ -35,7 +35,7 @@ pub struct CollectionAdd {
 impl InCommunity for CollectionAdd {
   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())?;
     }