From e431a481205ef5322f049cfebb00f42a884aaf10 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sat, 6 Feb 2016 12:23:53 +0000 Subject: [PATCH] exclude anime movies from anime index --- build-data/BuildData.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-data/BuildData.groovy b/build-data/BuildData.groovy index fe2f0501..7278ca33 100755 --- a/build-data/BuildData.groovy +++ b/build-data/BuildData.groovy @@ -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() } }