Increased max redirects from 3 to 5

closes #3449
This commit is contained in:
Taloth Saldono 2019-12-24 11:27:39 +01:00
parent 92c61701f2
commit d421ff9736
1 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,8 @@ namespace NzbDrone.Common.Http
public class HttpClient : IHttpClient
{
private const int MaxRedirects = 5;
private readonly Logger _logger;
private readonly IRateLimitService _rateLimitService;
private readonly ICached<CookieContainer> _cookieContainerCache;
@ -68,7 +70,7 @@ namespace NzbDrone.Common.Http
_logger.Trace("Redirected to {0}", request.Url);
if (autoRedirectChain.Count > 3)
if (autoRedirectChain.Count > MaxRedirects)
{
throw new WebException($"Too many automatic redirections were attempted for {autoRedirectChain.Join(" -> ")}", WebExceptionStatus.ProtocolError);
}