]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/http/comment.rs
Upgrading deps (#1995)
[lemmy.git] / crates / apub / src / http / comment.rs
index 562905ade35a455920977a685b9315d0af228c64..6a72434353dbae8805a5d62eb1585ec9dc7560de 100644 (file)
@@ -2,7 +2,7 @@ use crate::{
   http::{create_apub_response, create_apub_tombstone_response},
   objects::comment::ApubComment,
 };
-use actix_web::{body::AnyBody, web, web::Path, HttpResponse};
+use actix_web::{web, web::Path, HttpResponse};
 use diesel::result::Error::NotFound;
 use lemmy_api_common::blocking;
 use lemmy_apub_lib::traits::ApubObject;
@@ -21,7 +21,7 @@ pub(crate) struct CommentQuery {
 pub(crate) async fn get_apub_comment(
   info: Path<CommentQuery>,
   context: web::Data<LemmyContext>,
-) -> Result<HttpResponse<AnyBody>, LemmyError> {
+) -> Result<HttpResponse, LemmyError> {
   let id = CommentId(info.comment_id.parse::<i32>()?);
   let comment: ApubComment = blocking(context.pool(), move |conn| Comment::read(conn, id))
     .await??