Refactor random functions

This commit is contained in:
Deluan 2024-05-11 20:04:21 -04:00
parent 30ae468dc1
commit 0ae2944073
10 changed files with 53 additions and 19 deletions

View file

@ -4,7 +4,7 @@ import (
"strings"
"time"
"github.com/navidrome/navidrome/utils/number"
"github.com/navidrome/navidrome/utils/random"
)
type Share struct {
@ -42,7 +42,7 @@ func (s Share) CoverArtID() ArtworkID {
case "artist":
return Artist{ID: ids[0]}.CoverArtID()
}
rnd := number.RandomInt64(int64(len(s.Tracks)))
rnd := random.Int64(int64(len(s.Tracks)))
return s.Tracks[rnd].CoverArtID()
}