diff --git a/TwilightBoxart/BoxartCrawler.cs b/TwilightBoxart/BoxartCrawler.cs index 79452e8..7d1eb62 100644 --- a/TwilightBoxart/BoxartCrawler.cs +++ b/TwilightBoxart/BoxartCrawler.cs @@ -17,8 +17,7 @@ public class BoxartCrawler public BoxartCrawler(IProgress progress = null) { - // Enable all SSL cert pinning for now as users have reported problems with github. - ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; + // Disable all SSL cert pinning for now as users have reported problems with github. ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true; _progress = progress;