1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

* exclude 0ee patterns from last-resort matcher

This commit is contained in:
Reinhard Pointner 2013-11-28 03:13:24 +00:00
parent ccfe94f49b
commit 6ede531e7f

View File

@ -108,7 +108,7 @@ public class SeasonEpisodeMatcher {
};
// (last-resort) match patterns like 101, 102 (and greedily just grab the first)
Num101_SUBSTRING = new SeasonEpisodePattern(STRICT_SANITY, "(\\d{1})(\\d{2}).+") {
Num101_SUBSTRING = new SeasonEpisodePattern(STRICT_SANITY, "([1-9]{1})(\\d{2}).+") {
@Override
protected Collection<SxE> process(MatchResult match) {