Fixed oembed content-type

This commit is contained in:
dangered wolf 2022-07-24 19:15:31 -04:00
parent 490202dcff
commit c6a8b1a063
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -134,7 +134,10 @@ router.get('/owoembed', async (request: Request) => {
version: '1.0'
};
return new Response(JSON.stringify(test), {
headers: Constants.RESPONSE_HEADERS,
headers: {
...Constants.RESPONSE_HEADERS,
'content-type': 'application/json'
},
status: 200
});
});