]> 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 ed1815c075bba7886974d9854ca23ee6ee49d698..4da3dc14ffaa5207f1ce9027a3fd06058d9669d7 100644 (file)
@@ -21,14 +21,14 @@ 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());
   }
 
   if !post.deleted && !post.removed {
-    Ok(create_apub_response(&post.into_json(&context).await?))
+    create_apub_response(&post.into_json(&context).await?)
   } else {
-    Ok(create_apub_tombstone_response(post.ap_id.clone()))
+    create_apub_tombstone_response(post.ap_id.clone())
   }
 }