Don't list genres with zero valid albums (ie. all songs in this genre have no artist / no album tag)
This commit is contained in:
parent
6862cff185
commit
809e3f878d
1 changed files with 2 additions and 1 deletions
|
@ -203,7 +203,8 @@ impl Collection {
|
||||||
let mut genres = self
|
let mut genres = self
|
||||||
.genres
|
.genres
|
||||||
.values()
|
.values()
|
||||||
.map(|a| make_genre_header(a, dictionary))
|
.filter(|g| !g.albums.is_empty())
|
||||||
|
.map(|g| make_genre_header(g, dictionary))
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
let collator = dictionary::make_collator();
|
let collator = dictionary::make_collator();
|
||||||
genres.sort_by(|a, b| collator.compare(&a.name, &b.name));
|
genres.sort_by(|a, b| collator.compare(&a.name, &b.name));
|
||||||
|
|
Loading…
Add table
Reference in a new issue