From a429216735668f0d6fac93f943dfae38a18fc1ab Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 25 Feb 2021 17:23:11 +0100 Subject: [PATCH] Allow uppercase letters in stream name --- web/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/handler.go b/web/handler.go index 2a299c9..fb3b063 100644 --- a/web/handler.go +++ b/web/handler.go @@ -21,7 +21,7 @@ import ( var ( // Precompile regex - validPath = regexp.MustCompile("^/[a-z0-9@_-]*$") + validPath = regexp.MustCompile("^/[a-zA-Z0-9@_-]*$") counterMutex = new(sync.Mutex) connectedClients = make(map[string]map[string]int64)