From 5948263c6d55ba10c592740e7abd84264eddbb02 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 23 Sep 2025 22:04:45 -0700 Subject: [PATCH] lol --- src/server.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.tsx b/src/server.tsx index fd600b7..a2c9122 100644 --- a/src/server.tsx +++ b/src/server.tsx @@ -73,7 +73,7 @@ app.get("*", async c => { const connection = connections[subdomain] if (!connection) - return c.text("No tunnel", 502) + return c.text("Bad Gateway", 502) const id = randomID() const headers = Object.fromEntries(c.req.raw.headers)