Various adjustments

This commit is contained in:
Taevas 2025-03-07 17:43:41 +01:00
parent ec6cb4b355
commit 371171e61d
21 changed files with 30 additions and 52 deletions

View file

@ -19,7 +19,5 @@ export const coding_github: Handler = async () => {
} : undefined,
};
return new Response(new Blob([JSON.stringify(info)], {
type: "application/json",
}), {status: 200});
return Response.json(info, {status: 200});
};