mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
exclude anime movies from anime index
This commit is contained in:
parent
dd9cfaddfa
commit
e431a48120
@ -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()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user