From 453b3f237faf07c43a431695e99a6c325d309b4c Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 29 Mar 2016 14:27:23 +0100 Subject: [PATCH] Specify a protocol type of TLS12. Looks like CP doesn't seem to like SSL3 (it is quite old now so understandable) #119 --- PlexRequests.UI/Bootstrapper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PlexRequests.UI/Bootstrapper.cs b/PlexRequests.UI/Bootstrapper.cs index 79d884d99..940226674 100644 --- a/PlexRequests.UI/Bootstrapper.cs +++ b/PlexRequests.UI/Bootstrapper.cs @@ -123,6 +123,7 @@ namespace PlexRequests.UI FormsAuthentication.Enable(pipelines, formsAuthConfiguration); + ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true;