Fixed: All preferred words being added to filename

This commit is contained in:
Qstick
2019-03-08 22:05:56 -05:00
parent 0a6f552d5b
commit 6568eb5e99
3 changed files with 86 additions and 1 deletions
@@ -16,7 +16,12 @@ namespace NzbDrone.Core.Profiles.Releases.TermMatchers
public string MatchingTerm(string value)
{
return _term;
if (value.ToLowerInvariant().Contains(_term))
{
return _term;
}
return null;
}
}
}