1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-02 22:21:19 +00:00

Merge pull request #1981 from v2ray/revert-1893-patch-1

Revert "Fix self-signed certificates on Windows"
This commit is contained in:
Kslr 2019-10-28 23:00:29 +08:00 committed by GitHub
commit e55f1c5722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,5 +6,9 @@ package tls
import "crypto/x509"
func (c *Config) getCertPool() (*x509.CertPool, error) {
return c.loadSelfCertPool()
if c.DisableSystemRoot {
return c.loadSelfCertPool()
}
return nil, nil
}