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

Enable Anime-characteristics auto-matching when dealing with Anime in Smart Mode

This commit is contained in:
Reinhard Pointner 2016-07-25 01:35:03 +08:00
parent d424f661ee
commit 28c1f4fd38

View File

@ -32,7 +32,7 @@ class AutoDetectMatcher implements AutoCompleteMatcher {
private AutoCompleteMatcher movie = new MovieMatcher(TheMovieDB);
private AutoCompleteMatcher episode = new EpisodeListMatcher(TheTVDB, false);
private AutoCompleteMatcher anime = new EpisodeListMatcher(AniDB, false);
private AutoCompleteMatcher anime = new EpisodeListMatcher(AniDB, true);
private AutoCompleteMatcher music = new MusicMatcher(MediaInfoID3, AcoustID);
@Override