fix(llm): well this has been using the wrong value the whole time

This commit is contained in:
perf3ct 2025-06-07 23:16:44 +00:00
parent 313c624871
commit 0ce5307c0b
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -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 {