@ -47,11 +47,11 @@ namespace NzbDrone.Core.Parser
private static readonly Regex ProperRegex = new ( @"\b(?<proper>proper)\b" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex RepackRegex = new ( @"\b(?<repack>repack |rerip)\b",
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex RepackRegex = new ( @"\b(?<repack>repack \d? |rerip\d? )\b",
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex VersionRegex = new ( @"\d[-._ ]?v(?<version>\d)[-._ ]|\[v(?<version>\d)\] ",
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex VersionRegex = new ( @"\d[-._ ]?v(?<version>\d)[-._ ]|\[v(?<version>\d)\] |repack(?<version>\d)|rerip(?<version>\d) ",
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex RealRegex = new ( @"\b(?<real>REAL)\b" ,
RegexOptions . Compiled ) ;
@ -706,24 +706,24 @@ namespace NzbDrone.Core.Parser
{
var result = new QualityModel { Quality = Quality . Unknown } ;
if ( ProperRegex . IsMatch ( normalizedName ) )
var versionRegexResult = VersionRegex . Match ( normalizedName ) ;
if ( versionRegexResult . Success )
{
result . Revision . Version = 2 ;
result . Revision . Version = Convert . ToInt32 ( versionRegexResult . Groups [ "version" ] . Value ) ;
result . RevisionDetectionSource = QualityDetectionSource . Name ;
}
if ( Repack Regex. IsMatch ( normalizedName ) )
if ( Proper Regex. IsMatch ( normalizedName ) )
{
result . Revision . Version = 2 ;
result . Revision . IsRepack = true ;
result . Revision . Version = versionRegexResult . Success ? Convert . ToInt32 ( versionRegexResult . Groups [ "version" ] . Value ) + 1 : 2 ;
result . RevisionDetectionSource = QualityDetectionSource . Name ;
}
var versionRegexResult = VersionRegex . Match ( normalizedName ) ;
if ( versionRegexResult . Success )
if ( RepackRegex . IsMatch ( normalizedName ) )
{
result . Revision . Version = Convert . ToInt32 ( versionRegexResult . Groups [ "version" ] . Value ) ;
result . Revision . Version = versionRegexResult . Success ? Convert . ToInt32 ( versionRegexResult . Groups [ "version" ] . Value ) + 1 : 2 ;
result . Revision . IsRepack = true ;
result . RevisionDetectionSource = QualityDetectionSource . Name ;
}