From 53528f82753b389eadd99b60131cb7e3c84c4f92 Mon Sep 17 00:00:00 2001 From: Dreamacro <305009791@qq.com> Date: Thu, 27 Jun 2019 20:45:12 +0800 Subject: [PATCH] Fix: crash when authenticator is nil --- hub/executor/executor.go | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hub/executor/executor.go b/hub/executor/executor.go index 0686cd0c..a0bd1c86 100644 --- a/hub/executor/executor.go +++ b/hub/executor/executor.go @@ -35,15 +35,22 @@ func ApplyConfig(cfg *config.Config, force bool) { func GetGeneral() *config.General { ports := P.GetPorts() - return &config.General{ + authenticator := []string{} + if auth := authStore.Authenticator(); auth != nil { + authenticator = auth.Users() + } + + general := &config.General{ Port: ports.Port, SocksPort: ports.SocksPort, RedirPort: ports.RedirPort, - Authentication: authStore.Authenticator().Users(), + Authentication: authenticator, AllowLan: P.AllowLan(), Mode: T.Instance().Mode(), LogLevel: log.Level(), } + + return general } func updateExperimental(c *config.Experimental) {