mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Refactor random functions
This commit is contained in:
parent
30ae468dc1
commit
0ae2944073
10 changed files with 53 additions and 19 deletions
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue