diff --git a/src/callers/coverart.rs b/src/callers/coverart.rs index 6a7bbc0..8bbcd49 100644 --- a/src/callers/coverart.rs +++ b/src/callers/coverart.rs @@ -508,6 +508,7 @@ pub mod endpoint { match super::cov_db::create(&pool, &coverart, &song.id).await { Ok(id) => { coverart.id = id; + response.message = String::from("Successful"); response.data.push(coverart); (axum::http::StatusCode::OK, axum::Json(response))