diff --git a/src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs b/src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs index 42c1b4487..081339083 100644 --- a/src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs +++ b/src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs @@ -161,8 +161,10 @@ private async Task UpdateDalamud() { var settings = DalamudSettings.GetSettings(this.configDirectory); - // GitHub requires TLS 1.2, we need to hardcode this for Windows 7 + if (System.Environment.OSVersion.ToString() == "6.1") + { ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; + } var (versionInfoRelease, versionInfoStaging) = await GetVersionInfo(settings).ConfigureAwait(false); @@ -498,4 +500,4 @@ private async Task DownloadFile(string url, string path, TimeSpan timeout) await downloader.Download(timeout).ConfigureAwait(false); } } -} \ No newline at end of file +}