1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-15 13:55:03 -05:00

exclude anime movies from anime index

This commit is contained in:
Reinhard Pointner 2016-02-06 12:23:53 +00:00
parent dd9cfaddfa
commit e431a48120

View File

@ -360,7 +360,7 @@ def animeExcludes = new HashSet()
// exclude anime movies from anime index // exclude anime movies from anime index
new File('anime-list.xml').eachLine('UTF-8') { new File('anime-list.xml').eachLine('UTF-8') {
if (it =~ /tvdbid="movie"/ || it =~ /defaulttvdbseason="0"/) { if (it =~ /tvdbid="movie"/ || it =~ /imdbid="ttd\+"/) {
animeExcludes << it.match(/anidbid="(\d+)"/).toInteger() animeExcludes << it.match(/anidbid="(\d+)"/).toInteger()
} }
} }