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:
authorHo3ein <ho3ein.sanaei@gmail.com>2023-05-13 12:48:36 +0300
committerGitHub <noreply@github.com>2023-05-13 12:48:36 +0300
commit5468069befd602a7ae51deb5b76150ee16d426d6 (patch)
treea41b4492b37e52e033b2f4e027da05ce8893ae50 /web/controller/index.go
parent3bec9ee2737d0a8c49f4d705f1d8c8925bb8a2a8 (diff)
parent0cce35784eb2ab8ce42e88bdf63e0284254d2e14 (diff)
Merge pull request #420 from hamid-gh98/main
[fix] russia domains in settings and More....
Diffstat (limited to 'web/controller/index.go')
-rw-r--r--web/controller/index.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/controller/index.go b/web/controller/index.go
index 802f3f7d..b0ee83f8 100644
--- a/web/controller/index.go
+++ b/web/controller/index.go
@@ -39,7 +39,7 @@ func (a *IndexController) initRouter(g *gin.RouterGroup) {
func (a *IndexController) index(c *gin.Context) {
if session.IsLogin(c) {
- c.Redirect(http.StatusTemporaryRedirect, "xui/")
+ c.Redirect(http.StatusTemporaryRedirect, "panel/")
return
}
html(c, "login.html", "pages.login.title", nil)
@@ -101,5 +101,4 @@ func (a *IndexController) getSecretStatus(c *gin.Context) {
if err == nil {
jsonObj(c, status, nil)
}
-
}