mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 22:23:31 +03:00
Fix: crash when authenticator is nil
This commit is contained in:
parent
1c792b46c9
commit
53528f8275
1 changed files with 9 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue