From 634755454f18158625f69177983010aaafdfbe74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kuty=C5=82a?= Date: Thu, 9 Jul 2026 11:19:52 +0200 Subject: [PATCH] fix(chat): re-export isNameTrackedByAnotherSession from router MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit server.ts imports it from routers/chat.js, but the router never re-exported it from apps/chat/src/mcp.js — server crashed on boot with a SyntaxError. --- src/routers/chat.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routers/chat.ts b/src/routers/chat.ts index 1de1785..a18c145 100644 --- a/src/routers/chat.ts +++ b/src/routers/chat.ts @@ -21,6 +21,7 @@ import { hasChatMcpHttpSession, registerChatMcpHttpSession, unregisterChatMcpHttpSession, + isNameTrackedByAnotherSession, } from '../apps/chat/src/mcp.js'; export { @@ -30,6 +31,7 @@ export { hasChatMcpHttpSession, registerChatMcpHttpSession, unregisterChatMcpHttpSession, + isNameTrackedByAnotherSession, }; export const router: Router = Router();