diff --git a/main.ts b/main.ts index 7eec0eb..6f3a29d 100644 --- a/main.ts +++ b/main.ts @@ -15,7 +15,7 @@ jetstream.onUpdate("space.litenote.note", (event) => { }); jetstream.on("close", () => { - console.log("Connection closed, PartySocket will reconnect automatically"); + console.log("Connection closed"); }); jetstream.on("error", (error) => { @@ -31,8 +31,5 @@ Bun.serve({ port: 3000, routes: { "/health": () => new Response("ok"), - }, - fetch() { - return new Response("Not Found", { status: 404 }); - }, + } });