mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Made Nzb Restrictions case-insensative
This commit is contained in:
@@ -43,7 +43,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||
|
||||
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);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user