Fixed: (Indexers) Download requests not using the configured proxy

Fixes #520
This commit is contained in:
bakerboy448 2021-10-06 17:07:08 -05:00 committed by Qstick
parent 3455f3c92a
commit 0cca9525a1
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ namespace NzbDrone.Core.Indexers
try
{
var response = await _httpClient.ExecuteAsync(request);
var response = await _httpClient.ExecuteAsync(request, Definition);
torrentData = response.ResponseData;
}
catch (HttpException ex)

View file

@ -39,7 +39,7 @@ namespace NzbDrone.Core.Indexers
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);