memctx 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/api/graph.js +1 -1
- package/package.json +1 -1
package/dist/src/api/graph.js
CHANGED
|
@@ -36,7 +36,7 @@ router.post('/:projectId/extract/:sessionId', async (req, res) => {
|
|
|
36
36
|
let session;
|
|
37
37
|
if (sessionId === 'latest') {
|
|
38
38
|
session = db
|
|
39
|
-
.prepare('SELECT * FROM sessions WHERE project_id = ? ORDER BY
|
|
39
|
+
.prepare('SELECT * FROM sessions WHERE project_id = ? ORDER BY started_at DESC LIMIT 1')
|
|
40
40
|
.get(projectId);
|
|
41
41
|
}
|
|
42
42
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memctx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "Autonomous session memory for Claude Code - automatically captures, analyzes, and summarizes your development sessions",
|
|
5
5
|
"author": "Fahad Aziz Qureshi <info@memctx.dev> (https://memctx.dev)",
|
|
6
6
|
"license": "MIT",
|