|
|
@ -43,7 +43,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var restriction in restrictions)
|
|
|
|
foreach (var restriction in restrictions)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (subject.Report.Title.Contains(restriction))
|
|
|
|
if (subject.Report.Title.ToLowerInvariant().Contains(restriction.ToLowerInvariant()))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_logger.Trace("{0} is restricted: {1}", subject, restriction);
|
|
|
|
_logger.Trace("{0} is restricted: {1}", subject, restriction);
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|