Skip to content

Commit

Permalink
fix sandbox.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pomdtr committed Jun 16, 2024
1 parent 286c7bf commit 5706517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/deno/sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const server = Deno.serve(
}

try {
const resp = await handler(req);
const resp = await handler.fetch(req);
if (!(resp instanceof Response)) {
return new Response("Mod did not return a Response", { status: 500 });
}
Expand Down

0 comments on commit 5706517

Please sign in to comment.