Coverart remove file #68

Merged
phoenix merged 6 commits from coverart-remove_file into coverart_changes 2025-10-11 22:14:11 +00:00
Showing only changes of commit 290db5ce10 - Show all commits

View File

@@ -113,7 +113,7 @@ impl Song {
Ok(song_path) => {
let p = std::path::Path::new(&song_path);
if p.exists() {
match std::fs::remove_file(&p) {
match std::fs::remove_file(p) {
Ok(_) => Ok(()),
Err(err) => Err(err),
}