diff options
author | Steve Bate <svc-github@stevebate.net> | 2024-05-22 09:43:36 +0200 |
---|---|---|
committer | Steve Bate <svc-github@stevebate.net> | 2024-05-22 09:43:36 +0200 |
commit | 59bdaca3a87189bd6f634716e4d7ccf85081ff89 (patch) | |
tree | 0c0c578c0bae7937aae99f76e3211afb47713266 | |
parent | b95fbe4e438a2ab8a8625875e2eedac38dae572f (diff) |
Change WebFinger content type to RFC-required type
-rw-r--r-- | webfinger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webfinger.c b/webfinger.c index 7255ae2..2e5ec29 100644 --- a/webfinger.c +++ b/webfinger.c @@ -214,7 +214,7 @@ int webfinger_get_handler(xs_dict *req, char *q_path, status = 200; *body = j; - *ctype = "application/json"; + *ctype = "application/jrd+json"; } else status = 404; |