1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04: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
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()
}
}