diff --git a/src/routes/servers/[id]/index.svelte b/src/routes/servers/[id]/index.svelte index ddeba67..8e94dbf 100644 --- a/src/routes/servers/[id]/index.svelte +++ b/src/routes/servers/[id]/index.svelte @@ -19,14 +19,14 @@ const r2 = await fetch(`/api/v1/server/${id}/invites`); if (r2.ok) { - const a = await r2.body(); + const a = await r2.text(); if (a != "null") { invites = await r2.json(); } for (let invite in invites) { const logsReq = await fetch(`/api/v1/invite/${invites[invite].token}/log`) if (logsReq.ok) { - const b = await logsReq.body(); + const b = await logsReq.text(); if (b != "null") { invites[invite]["log"] = await logsReq.json() }