Coverart remove file #68

Merged
phoenix merged 6 commits from coverart-remove_file into coverart_changes 2025-10-11 22:14:11 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 1000d52556 - Show all commits

View File

@@ -48,7 +48,9 @@ impl CoverArt {
Err(err) => Err(err),
}
} else {
Err(std::io::Error::other("Cannot delete file that does not exist"))
Err(std::io::Error::other(
"Cannot delete file that does not exist",
))
}
}
}

View File

@@ -118,7 +118,9 @@ impl Song {
Err(err) => Err(err),
}
} else {
Err(std::io::Error::other("Cannot delete file that does not exist"))
Err(std::io::Error::other(
"Cannot delete file that does not exist",
))
}
}
Err(err) => Err(err),