fixup! New: (Cardigann) Add AllowEmptyInputs

Co-Authored-By: Bogdan <mynameisbogdan@users.noreply.github.com>
This commit is contained in:
Qstick 2023-02-26 16:48:53 -06:00
parent ec8025c3dc
commit fb5b325271

View file

@ -9,6 +9,7 @@
using AngleSharp.Html.Parser;
using Newtonsoft.Json.Linq;
using NLog;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Http;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Indexers.Definitions.Cardigann;
@ -1119,7 +1120,7 @@ private IEnumerable<IndexerRequest> GetRequest(Dictionary<string, object> variab
{
var inputValue = ApplyGoTemplateText(input.Value, variables);
if (!string.IsNullOrWhiteSpace(inputValue) || search.AllowEmptyInputs)
if (inputValue.IsNotNullOrWhiteSpace() || search.AllowEmptyInputs)
{
queryCollection.Add(input.Key, inputValue);
}