Skip to content

Commit

Permalink
Fix regular expression to not mark mp4 releases as HD ones.
Browse files Browse the repository at this point in the history
  • Loading branch information
victorpimentel committed Feb 26, 2012
1 parent 2a1eaf9 commit d7d1ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/TSRegexFun.m
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ + (NSString *) removeLeadingZero:(NSString *)string

+ (BOOL) isEpisodeHD:(NSString *)title
{
return [title isMatchedByRegex:@"(720|1080|HR|x264|mkv)"];
return [title isMatchedByRegex:@"(720|1080)"];
}

+ (NSString *) parseTitleFromString:(NSString *)title withIdentifier:(NSArray* )identifier withType:(NSString *)type
Expand Down

0 comments on commit d7d1ba5

Please sign in to comment.