From 4c8c968c4f8e8036a4fe0b10d280e4055d18cd4f Mon Sep 17 00:00:00 2001 From: ACE <42440432+ACEx86@users.noreply.github.com> Date: Mon, 27 Jan 2025 01:36:35 +0200 Subject: [PATCH] Update xtransport.go revert follow up change --- dnscrypt-proxy/xtransport.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dnscrypt-proxy/xtransport.go b/dnscrypt-proxy/xtransport.go index ec214f88..a79cc9a2 100644 --- a/dnscrypt-proxy/xtransport.go +++ b/dnscrypt-proxy/xtransport.go @@ -226,8 +226,7 @@ func (xTransport *XTransport) rebuildTransport() { } else { tlsClientConfig.ClientSessionCache = tls.NewLRUClientSessionCache(10) } - overrideCipherSuite := xTransport.tlsCipherSuite != nil && len(xTransport.tlsCipherSuite) > 0 - if overrideCipherSuite != nil { + if xTransport.tlsCipherSuite != nil { tlsClientConfig.PreferServerCipherSuites = false tlsClientConfig.MaxVersion = tls.VersionTLS13 var tls13 = "198 199 4865 4866 4867 4868 4869 49332 49333"