mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Remove math/rand
and only use crypto/rand
This commit is contained in:
parent
195f39182d
commit
950b5dc1ce
3 changed files with 18 additions and 15 deletions
|
@ -2,9 +2,11 @@ package backgrounds
|
|||
|
||||
import (
|
||||
"context"
|
||||
"crypto/rand"
|
||||
"encoding/base64"
|
||||
"errors"
|
||||
"io"
|
||||
"math/rand"
|
||||
"math/big"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"path"
|
||||
|
@ -48,7 +50,11 @@ func (h *Handler) getRandomImage(ctx context.Context) (string, error) {
|
|||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return list[rand.Intn(len(list))], nil
|
||||
if len(list) == 0 {
|
||||
return "", errors.New("no images available")
|
||||
}
|
||||
rnd, _ := rand.Int(rand.Reader, big.NewInt(int64(len(list))))
|
||||
return list[rnd.Int64()], nil
|
||||
}
|
||||
|
||||
func (h *Handler) getImageList(ctx context.Context) ([]string, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue