From d300968ee8a71f189208d78c97b0d88f4c1b3858 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 4 Jan 2021 19:53:15 +0100 Subject: [PATCH] Return http status code 410 with apub tombstone (ref #1256) --- lemmy_apub/src/http/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lemmy_apub/src/http/mod.rs b/lemmy_apub/src/http/mod.rs index 4f31f6a5..44835bf8 100644 --- a/lemmy_apub/src/http/mod.rs +++ b/lemmy_apub/src/http/mod.rs @@ -5,6 +5,7 @@ use lemmy_structs::blocking; use lemmy_utils::{settings::Settings, LemmyError}; use lemmy_websocket::LemmyContext; use serde::{Deserialize, Serialize}; +use http::StatusCode; pub mod comment; pub mod community; @@ -28,6 +29,7 @@ where { HttpResponse::Gone() .content_type(APUB_JSON_CONTENT_TYPE) + .status(StatusCode::GONE) .json(data) } -- 2.44.1