From dcc9685b32c8e9c8a018fcbc5e8471f79d8a1115 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:49:42 -0700 Subject: [PATCH] always awaiting --- src/webapp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webapp.ts b/src/webapp.ts index 7b0a1dd..20a2a44 100644 --- a/src/webapp.ts +++ b/src/webapp.ts @@ -17,7 +17,7 @@ export async function serveApp(c: Context, subdomain: string): Promise if (app instanceof Hono) return app.fetch(c.req.raw) else - return toResponse(app(c)) + return toResponse(await app(c)) } export function apps(): string[] {