mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix small lint errors found by gocritic
This commit is contained in:
parent
8d56ec898e
commit
b0fc684cb6
7 changed files with 8 additions and 8 deletions
|
@ -25,7 +25,7 @@ func ParseIndexGroups(spec string) IndexGroups {
|
|||
sub := re.FindStringSubmatch(g)
|
||||
if len(sub) > 0 {
|
||||
i := 0
|
||||
chars := strings.SplitN(sub[2], "", -1)
|
||||
chars := strings.Split(sub[2], "")
|
||||
for _, c := range chars {
|
||||
parsed[c] = sub[1]
|
||||
i++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue