mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
parent
50a2233b52
commit
a0a84d91ce
3 changed files with 11 additions and 3 deletions
|
@ -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()))
|
||||
|
|
|
@ -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))
|
||||
|
@ -83,6 +83,10 @@ pub(crate) async fn get_apub_community_outbox(
|
|||
Community::read_from_name(conn, &info.community_name, false)
|
||||
})
|
||||
.await??;
|
||||
if community.deleted || community.removed {
|
||||
return Err(LemmyError::from_message("deleted"));
|
||||
}
|
||||
|
||||
let id = ObjectId::new(generate_outbox_url(&community.actor_id)?);
|
||||
let outbox_data = CommunityContext(community.into(), context.get_ref().clone());
|
||||
let outbox: ApubCommunityOutbox = id
|
||||
|
@ -101,6 +105,10 @@ pub(crate) async fn get_apub_community_moderators(
|
|||
})
|
||||
.await??
|
||||
.into();
|
||||
if community.deleted || community.removed {
|
||||
return Err(LemmyError::from_message("deleted"));
|
||||
}
|
||||
|
||||
let id = ObjectId::new(generate_outbox_url(&community.actor_id)?);
|
||||
let outbox_data = CommunityContext(community, context.get_ref().clone());
|
||||
let moderators: ApubCommunityModerators = id
|
||||
|
|
|
@ -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()))
|
||||
|
|
Loading…
Reference in a new issue