[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix incomplete track deletion

Kasper (Sep 26, 2024, 3:20 AM +0200) 7414ed25 6bd08978

+3
+3
src-native/library_types.rs
··· 144 144 self.tracks 145 145 .remove(id) 146 146 .expect("Track ID not found when deleting"); 147 + self.track_item_ids 148 + .remove(id) 149 + .expect("Track ID not found when deleting (2)"); 147 150 delete_file(&file_path)?; 148 151 Ok(()) 149 152 }