mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04: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 @@ 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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue