mirror of
https://github.com/psforever/GameLauncher.git
synced 2026-01-19 18:24:45 +00:00
Add support for TLS 1.2 additionally to TLS 1.3
This commit is contained in:
parent
823819847b
commit
c72061bc0e
|
|
@ -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,
|
||||
}
|
||||
)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue