1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 16:12:19 +00:00

Don't use vars

This commit is contained in:
Yohann D'ANELLO 2020-10-04 18:12:35 +02:00
parent 7831238375
commit 3bf27fb0b1

View File

@ -50,7 +50,7 @@ func viewerGetHandler(w http.ResponseWriter, r *http.Request) {
// Get stream ID from URL, or from domain name
path := r.URL.Path[1:]
if cfg.OneStreamPerDomain {
var host = r.Host
host := r.Host
if strings.Contains(host, ":") {
realHost, _, err := net.SplitHostPort(r.Host)
if err != nil {