From 2297f307120e89bd429272edeeb681a00f380a22 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Tue, 9 Jan 2024 08:10:48 +0000 Subject: [PATCH] Partial revert based on https://github.com/Radarr/Radarr/commit/986128e100031135adf63b69873ca54866d8f988 --- src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs b/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs index 9746e744b..f386df858 100644 --- a/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs +++ b/src/NzbDrone.Core/Indexers/Torznab/TorznabSettings.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Text.RegularExpressions; using FluentValidation; using NzbDrone.Common.Extensions; @@ -9,9 +10,11 @@ namespace NzbDrone.Core.Indexers.Torznab { public class TorznabSettingsValidator : AbstractValidator { + private static readonly string[] ApiKeyWhiteList = Array.Empty(); + private static bool ShouldHaveApiKey(TorznabSettings settings) { - return settings.BaseUrl != null; + return settings.BaseUrl != null && ApiKeyWhiteList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c)); } private static readonly Regex AdditionalParametersRegex = new Regex(@"(&.+?\=.+?)+", RegexOptions.Compiled);