From c72061bc0e0ea2817719faa6d592e6f605858e25 Mon Sep 17 00:00:00 2001 From: Resaec Date: Tue, 1 Aug 2023 18:14:39 +0200 Subject: [PATCH] Add support for TLS 1.2 additionally to TLS 1.3 --- PSLauncher/LauncherForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PSLauncher/LauncherForm.cs b/PSLauncher/LauncherForm.cs index 4b46d5b..3eaca15 100644 --- a/PSLauncher/LauncherForm.cs +++ b/PSLauncher/LauncherForm.cs @@ -73,7 +73,7 @@ namespace PSLauncher new HttpClientHandler() { AllowAutoRedirect = false, - SslProtocols = System.Security.Authentication.SslProtocols.Tls13, + SslProtocols = System.Security.Authentication.SslProtocols.Tls13 | System.Security.Authentication.SslProtocols.Tls12, } ) {