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 (
"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
}