From b5d789df3a533226f228ee4561a55f02edd2e031 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 13 Aug 2022 17:30:25 -0500 Subject: [PATCH] Fixed: Correctly persist FlareSolverr Cookies to ensure it doesn't run on every request --- src/NzbDrone.Core/Indexers/HttpIndexerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }