From 0429530bf38c00e6396b99f77bc27958842da743 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 29 Mar 2016 14:31:39 +0100 Subject: [PATCH] Mono doesn't seem to have Tls1.2. Let's try TLS 1 #119 --- PlexRequests.UI/Bootstrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlexRequests.UI/Bootstrapper.cs b/PlexRequests.UI/Bootstrapper.cs index 940226674..dd1daaec0 100644 --- a/PlexRequests.UI/Bootstrapper.cs +++ b/PlexRequests.UI/Bootstrapper.cs @@ -123,7 +123,7 @@ namespace PlexRequests.UI FormsAuthentication.Enable(pipelines, formsAuthConfiguration); - ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; + ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls; ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true;