Fixed: (Torrent RSS) Clear old cookies on edit

Fixes #2275
This commit is contained in:
Bogdan
2024-11-04 14:23:29 +02:00
parent 8e69415d64
commit 62479737a7
2 changed files with 10 additions and 1 deletions

View File

@@ -650,7 +650,7 @@ namespace NzbDrone.Core.Indexers
{
foreach (var cookie in Cookies)
{
request.HttpRequest.Cookies.Add(cookie.Key, cookie.Value);
request.HttpRequest.Cookies[cookie.Key] = cookie.Value;
}
}