Fixed: Bluray 480p releases will be treated as DVD

This commit is contained in:
Mark McDowall
2014-05-25 13:28:43 -07:00
parent 16c60ff92c
commit 3717b558e4
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ namespace NzbDrone.Core.Parser
return result;
}
if (resolution == Resolution._576p)
if (resolution == Resolution._480p || resolution == Resolution._576p)
{
result.Quality = Quality.DVD;
return result;