mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 21:14:30 +02:00
Fixed: (Indexers) Download requests not using the configured proxy
Fixes #520
This commit is contained in:
parent
3455f3c92a
commit
0cca9525a1
2 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ public override async Task<byte[]> Download(Uri link)
|
|||
|
||||
try
|
||||
{
|
||||
var response = await _httpClient.ExecuteAsync(request);
|
||||
var response = await _httpClient.ExecuteAsync(request, Definition);
|
||||
torrentData = response.ResponseData;
|
||||
}
|
||||
catch (HttpException ex)
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public override async Task<byte[]> Download(Uri link)
|
|||
|
||||
try
|
||||
{
|
||||
var response = await _httpClient.ExecuteAsync(request);
|
||||
var response = await _httpClient.ExecuteAsync(request, Definition);
|
||||
nzbData = response.ResponseData;
|
||||
|
||||
_logger.Debug("Downloaded nzb for release finished ({0} bytes from {1})", nzbData.Length, link.AbsoluteUri);
|
||||
|
|
|
|||
Loading…
Reference in a new issue