pull/8873/head
Puru Vijay 3 years ago
parent 6b1faf98f1
commit fedd9acd58

@ -3,7 +3,7 @@ import { error } from '@sveltejs/kit';
export async function load({ fetch, params, url }) {
const res = await fetch(`/repl/${params.id}.json`);
console.log(1, await res.text());
console.log(1, (await res.text()).slice(4000));
if (!res.ok) {
throw error(res.status);

Loading…
Cancel
Save