diff --git a/backend/app/api/routes.py b/backend/app/api/routes.py index cd5b7cb8..2b44aac9 100644 --- a/backend/app/api/routes.py +++ b/backend/app/api/routes.py @@ -136,7 +136,7 @@ async def get_task_status(task_id: str): Raises: HTTPException: If task not found """ - task = task_manager.get_task(task_id) + task = task_manager.get_task_status(task_id) if not task: raise HTTPException(status_code=404, detail=f"Task {task_id} not found")