mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Fix 32 bits builds
This commit is contained in:
parent
aeed5a7099
commit
bcaa180fc7
1 changed files with 2 additions and 4 deletions
|
@ -2,10 +2,8 @@ package hasher
|
|||
|
||||
import (
|
||||
"hash/maphash"
|
||||
"math"
|
||||
"math/rand/v2"
|
||||
"strconv"
|
||||
|
||||
"github.com/navidrome/navidrome/utils/random"
|
||||
)
|
||||
|
||||
var instance = NewHasher()
|
||||
|
@ -45,7 +43,7 @@ func (h *Hasher) Reseed(id string) {
|
|||
}
|
||||
|
||||
func (h *Hasher) reseed(id string) string {
|
||||
seed := strconv.FormatInt(random.Int64(math.MaxInt64), 10)
|
||||
seed := strconv.FormatUint(rand.Uint64(), 36)
|
||||
h.seeds[id] = seed
|
||||
return seed
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue