Merge pull request 'fix: respond with JSON Resource Descriptor Content-Type per RFC7033' (#2882) from realaravinth/forgejo:cb-2871 into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2882
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
Earl Warren 2024-04-02 09:38:27 +00:00
commit 04fcaf783e
2 changed files with 2 additions and 0 deletions

View file

@ -118,4 +118,5 @@ func WebfingerQuery(ctx *context.Context) {
Aliases: aliases,
Links: links,
})
ctx.Resp.Header().Set("Content-Type", "application/jrd+json")
}

View file

@ -48,6 +48,7 @@ func TestWebfinger(t *testing.T) {
req := NewRequest(t, "GET", fmt.Sprintf("/.well-known/webfinger?resource=acct:%s@%s", user.LowerName, appURL.Host))
resp := MakeRequest(t, req, http.StatusOK)
assert.Equal(t, resp.Header().Get("Content-Type"), "application/jrd+json")
var jrd webfingerJRD
DecodeJSON(t, resp, &jrd)