diff --git a/functions/api/ping/[[catchall]].ts b/functions/api/ping/[[catchall]].ts index 47b2f6a..0df7964 100644 --- a/functions/api/ping/[[catchall]].ts +++ b/functions/api/ping/[[catchall]].ts @@ -69,6 +69,6 @@ export const onRequestPost: PagesFunction = async (context) => { body: JSON.stringify({ role: 'member' }) }); console.debug("ghResponse/status", ghResponse.status); - console.debug("ghResponse/body", await ghResponse.json()); + console.debug("ghResponse/body", await ghResponse.text()); return new Response(null, { status: ghResponse.status }); };