Fix: crash when authenticator is nil

This commit is contained in:
Dreamacro 2019-06-27 20:45:12 +08:00
parent 1c792b46c9
commit 53528f8275

View file

@ -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) {