From d0d8b6396c680d90af6861c001e2dbd313f28782 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Tue, 14 Feb 2017 04:37:25 +0800 Subject: [PATCH] Fix AniDB index (some missing titles due to overly aggressive scrubbing) @see https://www.filebot.net/forums/viewtopic.php?f=11&t=4748 --- build-data/BuildData.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/build-data/BuildData.groovy b/build-data/BuildData.groovy index f10fdf8e..0a03d9f8 100755 --- a/build-data/BuildData.groovy +++ b/build-data/BuildData.groovy @@ -387,7 +387,6 @@ def anidb_index = anidb.findResults{ def names = it.effectiveNames*.replaceAll(/\s+/, ' ')*.trim()*.replaceAll(/['`´‘’ʻ]+/, /'/) names = getNamePermutations(names) - names = names.findAll{ stripReleaseInfo(it)?.length() > 0 } return names.empty ? null : [it.id.pad(5)] + names.take(4) }