mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-05-07 08:46:26 +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 = []
|
||||
files = sorted(
|
||||
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:
|
||||
tasks.append(json.loads(f.read_text()))
|
||||
|
||||
Reference in New Issue
Block a user