fix: don't update session timestamp for metadata-only changes (resolves #9494) (#9495)

This commit is contained in:
Ariane Emory
2026-01-20 21:38:54 -05:00
committed by GitHub
parent 3723e1b8d2
commit cbe20d22d3
3 changed files with 8 additions and 6 deletions

View File

@@ -281,7 +281,7 @@ export const SessionRoutes = lazy(() =>
session.title = updates.title
}
if (updates.time?.archived !== undefined) session.time.archived = updates.time.archived
})
}, { touch: false })
return c.json(updatedSession)
},