Update queued song status #63

Merged
kdeng00 merged 5 commits from update_queued_song_status into upload_song 2025-08-28 18:41:46 -04:00
Showing only changes of commit 3b371e92aa - Show all commits
+8 -3
View File
@@ -458,9 +458,14 @@ impl CommitManager {
.link_queued_song_to_queued_coverart(token, &queued_song_id, &id)
.await
{
Ok(_) => {
println!("Queued coverart Id: {id:?}");
println!("Linked queued song to queued coverart");
Ok(_) => match up.update_queued_song_status(token, &queued_song_id, "ready").await {
Ok(_) => {
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) => {
return Err(std::io::Error::other(err.to_string()));