Update config.go

fix cipher suite downgrade on startup if source don't exist
This commit is contained in:
ACE 2025-01-26 06:01:10 +02:00 committed by GitHub
parent eeead7f8a2
commit 3478ec2387
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -959,6 +959,8 @@ func (config *Config) loadSource(proxy *Proxy, cfgSourceName string, cfgSource *
dlog.Infof("Downloading [%s] failed: %v, using cache file to startup", source.name, err)
}
proxy.sources = append(proxy.sources, source)
proxy.xTransport.keepCipherSuite = true
proxy.xTransport.rebuildTransport()
return nil
}