1080p releases without x264 or hdtv markers will be treated as HDTV instead of unknown

This commit is contained in:
Mark McDowall 2013-08-27 07:08:00 -07:00
commit 3c732f5a5e
2 changed files with 8 additions and 1 deletions

View file

@ -386,6 +386,12 @@ namespace NzbDrone.Core.Parser
return result;
}
if (normalizedName.Contains("1080p"))
{
result.Quality = Quality.HDTV1080p;
return result;
}
return result;
}