Coverart save to filesystem (#67)

Reviewed-on: #67
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-10-11 20:30:39 +00:00
committed by phoenix
parent 440caca7c2
commit e3ca2c5781
4 changed files with 16 additions and 4 deletions
+1 -1
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),
}