diff --git a/source/net/sourceforge/filebot/similarity/SeasonEpisodeMatcher.java b/source/net/sourceforge/filebot/similarity/SeasonEpisodeMatcher.java index 74eb9f02..0c37fae2 100644 --- a/source/net/sourceforge/filebot/similarity/SeasonEpisodeMatcher.java +++ b/source/net/sourceforge/filebot/similarity/SeasonEpisodeMatcher.java @@ -29,7 +29,7 @@ public class SeasonEpisodeMatcher { patterns[0] = new SeasonEpisodePattern(null, "(? process(MatchResult match) { @@ -43,7 +43,7 @@ public class SeasonEpisodeMatcher { }; // match patterns like 1x01, 1.02, ..., 1x01a, 10x01, 10.02, ... 1x01-02-03-04, 1x01x02x03x04 ... - patterns[2] = new SeasonEpisodePattern(sanity, "(? process(MatchResult match) { diff --git a/source/net/sourceforge/filebot/web/EpisodeFormat.java b/source/net/sourceforge/filebot/web/EpisodeFormat.java index 34120372..7333e831 100644 --- a/source/net/sourceforge/filebot/web/EpisodeFormat.java +++ b/source/net/sourceforge/filebot/web/EpisodeFormat.java @@ -145,7 +145,7 @@ public class EpisodeFormat extends Format { if (!it.getSeason().equals(ps)) { sb.append(String.format("S%02d", it.getSeason())).append(String.format("E%02d", it.getEpisode())); } else { - sb.append('-').append(String.format("E%02d", it.getEpisode())); + sb.append(String.format("E%02d", it.getEpisode())); } ps = it.getSeason(); }