This commit is contained in:
aligump 2026-05-31 00:00:23 +08:00 committed by GitHub
commit cadf57eba2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ def list_tasks():
return jsonify({
"success": True,
"data": [t.to_dict() for t in tasks],
"data": tasks, # list_tasks() already returns to_dict() results
"count": len(tasks)
})