Fixed: Saving Newznab indexer when redirect was true

This commit is contained in:
Robin Dadswell
2025-08-05 10:26:27 +01:00
committed by Qstick
parent 063666a7c9
commit dadfb8d008
3 changed files with 19 additions and 7 deletions
@@ -208,12 +208,6 @@ namespace NzbDrone.Core.Indexers
try
{
// Ensure Redirect is true for Usenet protocols
if (Protocol == DownloadProtocol.Usenet || (SupportsRedirect && Redirect))
{
failures.Add(new ValidationFailure("Redirect", "Redirect must be enabled for Usenet indexers"));
}
Test(failures).GetAwaiter().GetResult();
}
catch (Exception ex)