NLsub releases are properly detected

This commit is contained in:
Mark McDowall 2013-07-16 17:51:05 -07:00
commit 53bfd43fba
2 changed files with 4 additions and 0 deletions

View file

@ -450,6 +450,9 @@ namespace NzbDrone.Core.Parser
if (lowerTitle.Contains("portuguese"))
return Language.Portuguese;
if (lowerTitle.Contains("nlsub"))
return Language.Norwegian;
var match = LanguageRegex.Match(title);
if (match.Groups["italian"].Captures.Cast<Capture>().Any())