mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
This commit is contained in:
parent
f52a5113ca
commit
249eb66d94
@ -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());
|
||||||
|
Loading…
Reference in New Issue
Block a user