[moz] fix(spawner): _get_task_info SELECT 补 must_haves 字段 #86

Merged
pangtong-fujunshi merged 1 commits from fix/spawner-get-task-info-must-haves into main 2026-06-18 14:43:28 +00:00
+1 -1
View File
@@ -1261,7 +1261,7 @@ curl -X POST http://{api_host}:{api_port}/api/projects/{project_id}/tasks/{task_
conn = get_connection(db_path)
try:
row = conn.execute(
"SELECT id, title, status FROM tasks WHERE id=?", (
"SELECT id, title, status, must_haves FROM tasks WHERE id=?", (
task_id,)
).fetchone()
if not row: