mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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
|
@ -51,7 +51,7 @@ func (h *Handler) getRandomImage(ctx context.Context) (string, error) {
|
|||
if len(list) == 0 {
|
||||
return "", errors.New("no images available")
|
||||
}
|
||||
rnd := random.Int64(int64(len(list)))
|
||||
rnd := random.Int64(len(list))
|
||||
return list[rnd], nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue