Default Anime processing to TheTVDB with Absolute Order instead of AniDB (and improve logging to make sure users see what's going on)

This commit is contained in:
Reinhard Pointner 2019-05-22 20:26:18 +07:00
parent a7b92060f5
commit 839b50965a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public final class EpisodeUtilities {
}
public static boolean isAnime(Episode e) {
return AniDB.getIdentifier().equals(e.getSeriesInfo().getDatabase());
return SortOrder.Absolute.name().equals(e.getSeriesInfo().getOrder()) || AniDB.getIdentifier().equals(e.getSeriesInfo().getDatabase());
}
public static boolean isRegular(Episode e) {