Skip to content

Commit

Permalink
add prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Barber authored and Barber committed Dec 14, 2023
1 parent f8f3444 commit 2fa9dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/internal/processes/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ func installUnityCloudEnv(store database.Datastore, appConfig *config.AppConfig)
}

func generateRandomString(n int) (string, error) {
const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
bytes := make([]byte, n)
if _, err := rand.Read(bytes); err != nil {
return "", err
Expand Down

0 comments on commit 2fa9dc7

Please sign in to comment.