Fix G404 gosec lint error

This commit is contained in:
Deluan
2024-05-19 21:55:19 -04:00
parent bcaa180fc7
commit b2ecc1d16f
6 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ func (h *Handler) getRandomImage(ctx context.Context) (string, error) {
if len(list) == 0 {
return "", errors.New("no images available")
}
rnd := random.Int64(len(list))
rnd := random.Int64N(len(list))
return list[rnd], nil
}