Browse Source

Add missing characters to random string function, so we use the full upper+lowercase alphabet

pull/265/head
Leon Klingele 9 years ago committed by Simon Eisenmann
parent
commit
2cfe8af4df
  1. 2
      src/app/spreed-webrtc-server/random.go

2
src/app/spreed-webrtc-server/random.go

@ -28,7 +28,7 @@ import ( @@ -28,7 +28,7 @@ import (
)
const (
dict = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW0123456789"
dict = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
)
func NewRandomString(length int) string {

Loading…
Cancel
Save