We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed1580 commit e059eb5Copy full SHA for e059eb5
1 file changed
SplitPdf.UpgradeChecker/UpgradeRequiredChecker.cs
@@ -44,6 +44,8 @@ public LatestVersionInfo GetLatestVersionInfoFromUrl(string url)
44
{
45
using (var client = new WebClient())
46
47
+ ServicePointManager.Expect100Continue = true;
48
+ ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
49
var rawString = client.DownloadString(url);
50
51
var elements = rawString.Split('|');
0 commit comments