mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Respond with Content-Type: application/activity+json
(#3353)
As per ActivityPub specification, the return type should be `application/activity+json`, not `application/json`.
This commit is contained in:
parent
01dc1efe77
commit
3d7d6b2530
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ where
|
|||
Ok(
|
||||
HttpResponse::Ok()
|
||||
.content_type(FEDERATION_CONTENT_TYPE)
|
||||
.content_type("application/json")
|
||||
.content_type("application/activity+json")
|
||||
.body(json),
|
||||
)
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ fn create_apub_tombstone_response<T: Into<Url>>(id: T) -> LemmyResult<HttpRespon
|
|||
HttpResponse::Gone()
|
||||
.content_type(FEDERATION_CONTENT_TYPE)
|
||||
.status(StatusCode::GONE)
|
||||
.content_type("application/json")
|
||||
.content_type("application/activity+json")
|
||||
.body(json),
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue