From 0ce5307c0bb69ca43195c69a920cd73da7182085 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Sat, 7 Jun 2025 23:16:44 +0000 Subject: [PATCH] fix(llm): well this has been using the wrong value the whole time --- apps/server/src/routes/api/llm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/routes/api/llm.ts b/apps/server/src/routes/api/llm.ts index 658b44c93..d9dda5d7a 100644 --- a/apps/server/src/routes/api/llm.ts +++ b/apps/server/src/routes/api/llm.ts @@ -188,7 +188,7 @@ async function getSession(req: Request, res: Response) { */ async function updateSession(req: Request, res: Response) { // Get the chat using chatStorageService directly - const chatNoteId = req.params.chatNoteId; + const chatNoteId = req.params.sessionId; const updates = req.body; try {