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

Fix {plex} regression issue for Anime type episode objects

This commit is contained in:
Reinhard Pointner 2018-02-27 16:11:17 +07:00
parent 43cdd2579c
commit 302d1e1157

View File

@ -30,7 +30,7 @@ public class PlexNamingStandard {
public String getPath(Episode e) { public String getPath(Episode e) {
if (isAnime(e)) { if (isAnime(e)) {
// Anime // Anime
return path(getSeriesFolder(), getSeriesFolder(e), getEpisodeName(e)); return path(getAnimeFolder(), getSeriesFolder(e), getEpisodeName(e));
} else { } else {
// TV Series // TV Series
return path(getSeriesFolder(), getSeriesFolder(e), getSeasonFolder(e), getEpisodeName(e)); return path(getSeriesFolder(), getSeriesFolder(e), getSeasonFolder(e), getEpisodeName(e));