Compare commits

...

1 Commits

Author SHA1 Message Date
290db5ce10 Wanring fix 2025-10-11 16:32:13 -04:00

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