diff --git a/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs b/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs index 9adc525e2..802803997 100644 --- a/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs +++ b/src/NzbDrone.Core/Indexers/HttpIndexerBase.cs @@ -403,7 +403,7 @@ namespace NzbDrone.Core.Indexers throw new CloudFlareProtectionException(response); } - UpdateCookies(Cookies, DateTime.Now + TimeSpan.FromDays(30)); + UpdateCookies(request.HttpRequest.Cookies, DateTime.Now + TimeSpan.FromDays(30)); return new IndexerResponse(request, response); }