Another one

This commit is contained in:
phoenix
2025-03-22 19:54:07 -04:00
parent 455ece80ea
commit 97e5848815
+6 -3
View File
@@ -251,7 +251,7 @@ impl CommitManager {
}
fn retrieve_object(&self) {
println!("Deleting song");
println!("Retrieving song");
let rt = self.ica_action.retrieve_flag_value(&String::from("-rt"));
if rt != "songs" {
@@ -272,8 +272,11 @@ impl CommitManager {
let result = Runtime::new().unwrap().block_on(result_fut);
match result {
Ok(o) => {
for _son in o {
// son.print_info();
for song in o {
println!("Title: {:?}", song.title);
println!("Artist: {:?}", song.artist);
println!("Album: {:?}", song.album);
println!("Year: {:?}", song.year);
}
}
Err(er) => {