We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d3c65 commit 255caf6Copy full SHA for 255caf6
Assets/PatchKit Patcher/Scripts/AppData/Remote/Downloaders/BaseHttpDownloader.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.IO;
3
using System.Net;
4
using JetBrains.Annotations;
@@ -79,7 +79,8 @@ public void Download(CancellationToken cancellationToken)
79
{
80
Address = new Uri(_url),
81
Range = _bytesRange,
82
- Timeout = _timeout
+ Timeout = _timeout,
83
+ ReadWriteTimeout = _timeout,
84
};
85
86
using (var response = _httpClient.Get(request))
0 commit comments