We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe6c07a commit 11ea9adCopy full SHA for 11ea9ad
2 files changed
FlashpointInstaller/src/Program.cs
@@ -19,6 +19,8 @@ static void Main(string[] args)
19
Application.EnableVisualStyles();
20
Application.SetCompatibleTextRenderingDefault(false);
21
22
+ ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
23
+
24
try
25
{
26
var listStream = new MemoryStream(new WebClient().DownloadData(FPM.ListURL)) { Position = 0 };
FlashpointManager/src/Program.cs
@@ -48,6 +48,8 @@ static void Main(string[] args)
48
49
50
51
52
53
// Load config, or create if it doesn't exist
54
55
0 commit comments