We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aebc73 commit 533c755Copy full SHA for 533c755
handleRequest.ts
@@ -19,7 +19,7 @@ export async function handleRequest(request: Request) {
19
return redirectWithoutHash(url, atSignIndex);
20
}
21
if (url.pathname.includes("testing-this-out")) {
22
- return new Response(Deno.env.get("DPRINT_PLUGINS_GH_TOKEN")?.substring(0, 5) ?? "fail", {
+ return new Response((Deno.env.get("DPRINT_PLUGINS_GH_TOKEN")?.length ?? 0).toString(), {
23
status: 200,
24
});
25
0 commit comments