1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Plex naming standard specifies Specials folder.

@see https://support.plex.tv/hc/en-us/articles/200220707-Naming-TV-Show-Specials-
This commit is contained in:
Reinhard Pointner 2016-05-16 22:22:57 +08:00
parent 83dc1c40f6
commit 8e082f4a28

View File

@ -47,7 +47,7 @@ public enum NamingStandard {
// TV Series
String episode = String.join(" - ", e.getSeriesName(), EpisodeFormat.SeasonEpisode.formatS00E00(e), episodeTitle);
String season = e.getSeason() == null ? e.getSpecial() == null ? null : "Special" : String.format("Season %02d", e.getSeason());
String season = e.getSeason() == null ? e.getSpecial() == null ? null : "Specials" : String.format("Season %02d", e.getSeason());
return path("TV Shows", e.getSeriesName(), season, episode);
}