diff --git a/AlwaysUpToDate/DownloadManager.cs b/AlwaysUpToDate/DownloadManager.cs index dbefa5b..54a1f6d 100644 --- a/AlwaysUpToDate/DownloadManager.cs +++ b/AlwaysUpToDate/DownloadManager.cs @@ -329,7 +329,7 @@ namespace AlwaysUpToDate TriggerProgressChanged(UpdateStep.Downloading, null, 0); - using HttpResponseMessage response = await httpClient.GetAsync(updateUrl); + using HttpResponseMessage response = await httpClient.GetAsync(updateUrl, HttpCompletionOption.ResponseHeadersRead); _ = response.EnsureSuccessStatusCode(); using Stream contentStream = await response.Content.ReadAsStreamAsync();