]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/http/comment.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / apub / src / http / comment.rs
index 9e78da2ab572091035b01511575663d59f877eb2..66794f90c5d1a2bcba7c07bc73ebf4f50b220282 100644 (file)
@@ -21,7 +21,7 @@ pub(crate) async fn get_apub_comment(
   context: Data<LemmyContext>,
 ) -> Result<HttpResponse, LemmyError> {
   let id = CommentId(info.comment_id.parse::<i32>()?);
-  let comment: ApubComment = Comment::read(context.pool(), id).await?.into();
+  let comment: ApubComment = Comment::read(&mut context.pool(), id).await?.into();
   if !comment.local {
     return Err(err_object_not_local());
   }