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:
parent
aeed5a7099
commit
bcaa180fc7
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue