From 59bdaca3a87189bd6f634716e4d7ccf85081ff89 Mon Sep 17 00:00:00 2001 From: Steve Bate Date: Wed, 22 May 2024 09:43:36 +0200 Subject: [PATCH] Change WebFinger content type to RFC-required type --- webfinger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;