Refactoring #24

Merged
phoenix merged 3 commits from refactoring into devel 2025-06-14 01:30:50 +00:00
Showing only changes of commit d95571a77b - Show all commits

View File

@@ -23,7 +23,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
} }
} }
Err(err) => { Err(err) => {
eprintln!("Error: {:?}", err); eprintln!("Error checking if queue is empty: {:?}", err);
} }
} }
@@ -101,15 +101,10 @@ async fn process_song(api_url: &String, song_queue_id: &uuid::Uuid) -> Result<()
} }
} }
} }
Err(err) => { Err(err) => Err(err),
Err(err)
}
} }
} }
Err(err) => { Err(err) => Err(err),
eprintln!("Error fetching song queue data: {:?}", err);
Err(err)
}
} }
} }