mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Simplify random.Int64 usage with generics
This commit is contained in:
parent
0ae2944073
commit
3463d0c208
4 changed files with 7 additions and 5 deletions
|
@ -42,7 +42,7 @@ func (s Share) CoverArtID() ArtworkID {
|
|||
case "artist":
|
||||
return Artist{ID: ids[0]}.CoverArtID()
|
||||
}
|
||||
rnd := random.Int64(int64(len(s.Tracks)))
|
||||
rnd := random.Int64(len(s.Tracks))
|
||||
return s.Tracks[rnd].CoverArtID()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue