update queued song #28

Merged
phoenix merged 20 commits from update_queued_song into devel 2025-06-28 23:23:42 +00:00
Showing only changes of commit 76024eeae9 - Show all commits

View File

@@ -81,17 +81,15 @@ async fn some_work(
.await .await
{ {
Ok(response) => { Ok(response) => {
match response.json::<update_queued_song::response::Response>().await { match response
Ok(_inner_response) => { .json::<update_queued_song::response::Response>()
Ok(()) .await
} {
Err(err) => Err(std::io::Error::other( Ok(_inner_response) => Ok(()),
err.to_string())) Err(err) => Err(std::io::Error::other(err.to_string())),
} }
} }
Err(err) => Err(std::io::Error::other( Err(err) => Err(std::io::Error::other(err.to_string())),
err.to_string(),
)),
} }
} }
Err(err) => { Err(err) => {