1
0
Fork 0
mirror of https://github.com/navidrome/navidrome.git synced 2025-04-04 21:17:37 +03:00

Fix 32 bits builds

This commit is contained in:
Deluan 2024-05-19 13:02:26 -04:00
parent aeed5a7099
commit bcaa180fc7

View file

@ -2,10 +2,8 @@ package hasher
import ( import (
"hash/maphash" "hash/maphash"
"math" "math/rand/v2"
"strconv" "strconv"
"github.com/navidrome/navidrome/utils/random"
) )
var instance = NewHasher() var instance = NewHasher()
@ -45,7 +43,7 @@ func (h *Hasher) Reseed(id string) {
} }
func (h *Hasher) reseed(id string) 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 h.seeds[id] = seed
return seed return seed
} }