Skip to content

Commit

Permalink
Dont serve apub json for removed objects (ref #2522)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutomic committed Nov 4, 2022
1 parent b5cd732 commit 5b10554
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/apub/src/http/comment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub(crate) async fn get_apub_comment(
return Err(NotFound.into());
}

if !comment.deleted {
if !comment.deleted && !comment.removed {
Ok(create_apub_response(&comment.into_apub(&**context).await?))
} else {
Ok(create_apub_tombstone_response(comment.ap_id.clone()))
Expand Down
2 changes: 1 addition & 1 deletion crates/apub/src/http/community.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub(crate) async fn get_apub_community_http(
.await??
.into();

if !community.deleted {
if !community.deleted && !community.removed {
let apub = community.into_apub(&**context).await?;

Ok(create_apub_response(&apub))
Expand Down
2 changes: 1 addition & 1 deletion crates/apub/src/http/post.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub(crate) async fn get_apub_post(
return Err(NotFound.into());
}

if !post.deleted {
if !post.deleted && !post.removed {
Ok(create_apub_response(&post.into_apub(&context).await?))
} else {
Ok(create_apub_tombstone_response(post.ap_id.clone()))
Expand Down

0 comments on commit 5b10554

Please sign in to comment.