mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
More micro-optimizations
This commit is contained in:
parent
939f3eee97
commit
0f7d6b5bc4
3 changed files with 19 additions and 25 deletions
|
@ -27,11 +27,8 @@ func ParseIndexGroups(spec string) IndexGroups {
|
|||
for _, g := range split {
|
||||
sub := indexGroupsRx.FindStringSubmatch(g)
|
||||
if len(sub) > 0 {
|
||||
i := 0
|
||||
chars := strings.Split(sub[2], "")
|
||||
for _, c := range chars {
|
||||
parsed[c] = sub[1]
|
||||
i++
|
||||
for _, c := range sub[2] {
|
||||
parsed[string(c)] = sub[1]
|
||||
}
|
||||
} else {
|
||||
parsed[g] = g
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue