Added function call to update queued song status

This commit is contained in:
kdeng00
2025-08-28 16:50:34 -04:00
parent d67e320278
commit 3b371e92aa
+8 -3
View File
@@ -458,9 +458,14 @@ impl CommitManager {
.link_queued_song_to_queued_coverart(token, &queued_song_id, &id) .link_queued_song_to_queued_coverart(token, &queued_song_id, &id)
.await .await
{ {
Ok(_) => { Ok(_) => match up.update_queued_song_status(token, &queued_song_id, "ready").await {
println!("Queued coverart Id: {id:?}"); Ok(_) => {
println!("Linked queued song to queued coverart"); println!("Queued coverart Id: {id:?}");
println!("Linked queued song to queued coverart");
}
Err(err) => {
return Err(std::io::Error::other(err.to_string()));
}
} }
Err(err) => { Err(err) => {
return Err(std::io::Error::other(err.to_string())); return Err(std::io::Error::other(err.to_string()));