1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00
Reinhard Pointner 2016-01-07 18:30:42 +00:00
parent f52a5113ca
commit 249eb66d94

View File

@ -120,7 +120,7 @@ public class EpisodeFormat extends Format {
return getSeasonEpisodeNumbers(episodes).entrySet().stream().map(it -> { return getSeasonEpisodeNumbers(episodes).entrySet().stream().map(it -> {
if (it.getKey() >= 0) { if (it.getKey() >= 0) {
// season episode format // season episode format
return String.format("S%02dxE%02d-E%02d", it.getKey(), it.getValue().first(), it.getValue().last()); return String.format("S%02dE%02d-E%02d", it.getKey(), it.getValue().first(), it.getValue().last());
} else { } else {
// absolute episode format // absolute episode format
return String.format("E%02d-E%02d", it.getValue().first(), it.getValue().last()); return String.format("E%02d-E%02d", it.getValue().first(), it.getValue().last());