Warning fix

This commit is contained in:
2025-10-11 16:20:57 -04:00
parent 5143b03e1a
commit 4b07276b78

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),
}