mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Revert: Small optimization in genre mapping
This commit is contained in:
parent
a6311259fd
commit
f0c11916ca
2 changed files with 8 additions and 3 deletions
|
@ -141,12 +141,12 @@ func (s mediaFileMapper) mapGenres(genres []string) (string, model.Genres) {
|
|||
var result model.Genres
|
||||
unique := map[string]struct{}{}
|
||||
var all []string
|
||||
separators := conf.Server.Scanner.GenreSeparators + " "
|
||||
for i := range genres {
|
||||
gs := strings.FieldsFunc(genres[i], func(r rune) bool {
|
||||
return strings.ContainsRune(separators, r)
|
||||
return strings.ContainsRune(conf.Server.Scanner.GenreSeparators, r)
|
||||
})
|
||||
for _, g := range gs {
|
||||
for j := range gs {
|
||||
g := strings.TrimSpace(gs[j])
|
||||
key := strings.ToLower(g)
|
||||
if _, ok := unique[key]; ok {
|
||||
continue
|
||||
|
|
|
@ -67,5 +67,10 @@ var _ = Describe("mapping", func() {
|
|||
Expect(gs[1].Name).To(Equal("Dance"))
|
||||
Expect(gs[2].Name).To(Equal("Electronic"))
|
||||
})
|
||||
It("does not break on spaces", func() {
|
||||
_, gs := mapper.mapGenres([]string{"New Wave"})
|
||||
Expect(gs).To(HaveLen(1))
|
||||
Expect(gs[0].Name).To(Equal("New Wave"))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue