New: Repacks will be treated the same as propers.

This commit is contained in:
Mark McDowall
2012-04-25 08:15:48 -07:00
parent 6c0ff71cde
commit 2c7a2df3ea
2 changed files with 4 additions and 1 deletions

View File

@@ -251,7 +251,7 @@ namespace NzbDrone.Core
name = name.Trim();
var normalizedName = NormalizeTitle(name);
var result = new Quality { QualityType = QualityTypes.Unknown };
result.Proper = normalizedName.Contains("proper");
result.Proper = (normalizedName.Contains("proper") || normalizedName.Contains("repack"));
if (normalizedName.Contains("dvd") || normalizedName.Contains("bdrip") || normalizedName.Contains("brrip"))
{