mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Indexers) Download requests not using the configured proxy
Fixes #520
This commit is contained in:
@@ -43,7 +43,7 @@ namespace NzbDrone.Core.Indexers
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.ExecuteAsync(request);
|
var response = await _httpClient.ExecuteAsync(request, Definition);
|
||||||
torrentData = response.ResponseData;
|
torrentData = response.ResponseData;
|
||||||
}
|
}
|
||||||
catch (HttpException ex)
|
catch (HttpException ex)
|
||||||
|
@@ -39,7 +39,7 @@ namespace NzbDrone.Core.Indexers
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await _httpClient.ExecuteAsync(request);
|
var response = await _httpClient.ExecuteAsync(request, Definition);
|
||||||
nzbData = response.ResponseData;
|
nzbData = response.ResponseData;
|
||||||
|
|
||||||
_logger.Debug("Downloaded nzb for release finished ({0} bytes from {1})", nzbData.Length, link.AbsoluteUri);
|
_logger.Debug("Downloaded nzb for release finished ({0} bytes from {1})", nzbData.Length, link.AbsoluteUri);
|
||||||
|
Reference in New Issue
Block a user