mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-05-06 16:26:16 +08:00
Fix: Align ID extraction logic with _new_id using index [1]
This commit is contained in:
@@ -114,7 +114,7 @@ class TaskManager:
|
|||||||
tasks = []
|
tasks = []
|
||||||
files = sorted(
|
files = sorted(
|
||||||
self.dir.glob("task_*.json"),
|
self.dir.glob("task_*.json"),
|
||||||
key=lambda f: int(f.stem.split("_")[-1])
|
key=lambda f: int(f.stem.split("_")[1])
|
||||||
)
|
)
|
||||||
for f in files:
|
for f in files:
|
||||||
tasks.append(json.loads(f.read_text()))
|
tasks.append(json.loads(f.read_text()))
|
||||||
|
|||||||
Reference in New Issue
Block a user