A tool to sync music with your favorite devices
0
fork

Configure Feed

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

src/model: minor comments, ignore dead code on Album struct

Gee Sawra e9b3cace d518b029

+3
+3
src/model.rs
··· 153 153 sha256::digest(sb.string().unwrap()) 154 154 } 155 155 156 + // Incredibly ugly way to remove all characters sqlite3's FTS5 hates. 157 + // I am ashamed of my self, but as they say, if it works it isn't stupid. 156 158 fn clean(s: String, is_file: bool) -> String { 157 159 let mut s = s.clone(); 158 160 ··· 190 192 s 191 193 } 192 194 195 + #[allow(dead_code)] 193 196 pub struct Album { 194 197 pub title: String, 195 198 pub artist: String,