set content-type to application/activity+json for /actor

This commit is contained in:
Joel Beckmeyer 2020-11-19 21:13:24 -05:00
parent a15d734218
commit c2d53df85b

View file

@ -62,7 +62,7 @@ async def actor(request):
"preferredUsername": "relay", "preferredUsername": "relay",
"url": "https://{}/actor".format(request.host) "url": "https://{}/actor".format(request.host)
} }
return aiohttp.web.json_response(data) return aiohttp.web.json_response(data, content_type='application/activity+json')
app.router.add_get('/actor', actor) app.router.add_get('/actor', actor)