From f6d2362f48895adaefd46bce746aa79f63fc1a81 Mon Sep 17 00:00:00 2001 From: yanghuanglin Date: Wed, 27 Sep 2023 12:01:29 +0800 Subject: [PATCH] fix dashboard_addr https issue --- cmd/frps-panel/cmd.go | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/frps-panel/cmd.go b/cmd/frps-panel/cmd.go index 1ed43de..84f9ef1 100644 --- a/cmd/frps-panel/cmd.go +++ b/cmd/frps-panel/cmd.go @@ -87,7 +87,7 @@ func parseConfigFile(configFile, tokensFile string) (controller.HandleController } } - common.Common.DashboardTls = strings.HasPrefix("https://", strings.ToLower(common.Common.DashboardAddr)) + common.Common.DashboardTls = strings.HasPrefix(strings.ToLower(common.Common.DashboardAddr), "https://") tls := server.TLS{ Enable: common.Common.TlsMode, diff --git a/go.mod b/go.mod index 5211096..765f33d 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,6 @@ require ( github.com/gin-contrib/i18n v1.0.0 github.com/gin-contrib/sessions v0.0.5 github.com/gin-gonic/gin v1.9.1 - github.com/pelletier/go-toml/v2 v2.0.9 github.com/spf13/cobra v0.0.3 golang.org/x/text v0.11.0 ) @@ -36,6 +35,7 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/nicksnyder/go-i18n/v2 v2.2.1 // indirect + github.com/pelletier/go-toml/v2 v2.0.9 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.2.11 // indirect