Skip to content

Commit efa85a3

Browse files
committed
fix: Actually return hono instance
1 parent 589eec8 commit efa85a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export class Handler {
153153

154154
app.all("/api/*", async (c) => handleApiRequest(c.req.raw));
155155

156-
return createResponse(undefined, "Unknown operation", 400);
156+
return app.fetch(request);
157157
}
158158

159159
async queryRoute(request: Request, isRaw: boolean): Promise<Response> {

0 commit comments

Comments
 (0)