update queued song #28

Merged
phoenix merged 20 commits from update_queued_song into devel 2025-06-28 23:23:42 +00:00
2 changed files with 7 additions and 5 deletions
Showing only changes of commit 4c1ee005e8 - Show all commits

View File

@@ -104,11 +104,6 @@ async fn process_song(api_url: &String, song_queue_id: &uuid::Uuid) -> Result<()
Ok(_) => {
let s_path = util::path_buf_to_string(&song_queue_path);
the_rest::update_queued_song(&s_path).await;
// TODO: Update the queued song with the updated queued song
// TODO: Create song
// TODO: Create coverart
// TODO: Wipe data from queued song
// TODO: Wipe data from queued coverart
}
Err(err) => {
eprintln!("Error: {:?}", err);

View File

@@ -1,4 +1,11 @@
// TODO: Refactor this file when this app is functional
// TODO: Update the queued song with the updated queued song
pub async fn update_queued_song(song_path: &String) {
}
// TODO: Create song
// TODO: Create coverart
// TODO: Wipe data from queued song
// TODO: Wipe data from queued coverart