Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/controller')
-rw-r--r--web/controller/util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/controller/util.go b/web/controller/util.go
index a32c9270..ac08f9af 100644
--- a/web/controller/util.go
+++ b/web/controller/util.go
@@ -61,7 +61,7 @@ func html(c *gin.Context, name string, title string, data gin.H) {
data = gin.H{}
}
data["title"] = title
- data["host"] = strings.Split(c.Request.Host, ":")[0]
+ data["host"], _, _ = net.SplitHostPort(c.Request.Host)
data["request_uri"] = c.Request.RequestURI
data["base_path"] = c.GetString("base_path")
c.HTML(http.StatusOK, name, getContext(data))