mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Fix G404 gosec lint error
This commit is contained in:
parent
bcaa180fc7
commit
b2ecc1d16f
6 changed files with 20 additions and 8 deletions
|
@ -42,7 +42,7 @@ func (s Share) CoverArtID() ArtworkID {
|
|||
case "artist":
|
||||
return Artist{ID: ids[0]}.CoverArtID()
|
||||
}
|
||||
rnd := random.Int64(len(s.Tracks))
|
||||
rnd := random.Int64N(len(s.Tracks))
|
||||
return s.Tracks[rnd].CoverArtID()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue