diff --git a/src/api/server.rs b/src/api/server.rs index 1862ab0..f05ccf5 100644 --- a/src/api/server.rs +++ b/src/api/server.rs @@ -2620,7 +2620,7 @@ pub async fn start_server(host: &str, port: u16) -> anyhow::Result<()> { .route("/api/v1/file/:file_uuid/process", post(trigger_processing)) .route("/api/v1/file/:file_uuid/chunk/:chunk_id", get(get_chunk_by_path)) - .route("/api/v1/progress/:uuid", get(get_progress)) + .route("/api/v1/progress/:file_uuid", get(get_progress)) .route("/api/v1/jobs", get(list_jobs)) .route("/api/v1/config/cache", post(cache_toggle)) // .merge(person_identity::person_identity_routes()) // V4.0: DISABLED (person_identities table removed)