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
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public enum NamingStandard {
// TV Series // TV Series
String episode = String.join(" - ", e.getSeriesName(), EpisodeFormat.SeasonEpisode.formatS00E00(e), episodeTitle); 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); return path("TV Shows", e.getSeriesName(), season, episode);
} }