]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/http/post.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / apub / src / http / post.rs
index a2e600268a89e501552d70555b1ae5620eaafec7..4da3dc14ffaa5207f1ce9027a3fd06058d9669d7 100644 (file)
@@ -21,7 +21,7 @@ pub(crate) async fn get_apub_post(
   context: Data<LemmyContext>,
 ) -> Result<HttpResponse, LemmyError> {
   let id = PostId(info.post_id.parse::<i32>()?);
-  let post: ApubPost = Post::read(context.pool(), id).await?.into();
+  let post: ApubPost = Post::read(&mut context.pool(), id).await?.into();
   if !post.local {
     return Err(err_object_not_local());
   }