1 parent bf381ce commit 1ff367fCopy full SHA for 1ff367f
1 file changed
src/core/events/index.ts
@@ -56,7 +56,9 @@ async function handleValidatedEvent(body: BlockActionEvent | MessageIMEvent) {
56
return;
57
}
58
59
- await blockActionHandler(body);
+ void blockActionHandler(body).catch((err) =>
60
+ console.error("[button] handler failed:", err)
61
+ );
62
63
64
export default new Elysia().use(commandHandler).post("/api/events", handler);
0 commit comments