Fix header guard for apub responses

This commit is contained in:
Felix 2020-04-22 20:56:31 +02:00
parent 92e30311ce
commit 70816a4779
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ pub fn config(cfg: &mut web::ServiceConfig) {
cfg
.service(
web::scope("/")
.guard(guard::Header("Content-Type", APUB_JSON_CONTENT_TYPE))
.guard(guard::Header("Accept", APUB_JSON_CONTENT_TYPE))
.route(
"/c/{community_name}",
web::get().to(get_apub_community_http),