Wanring fix

This commit is contained in:
2025-10-11 16:32:13 -04:00
parent 440caca7c2
commit 290db5ce10

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