From 9613049cb19a059030fe4367dd961ff0a967c5e4 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 25 Feb 2016 19:30:41 +0000 Subject: [PATCH] Minor tweak --- 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 3453ebab..f834c335 100755 --- a/build-data/BuildData.groovy +++ b/build-data/BuildData.groovy @@ -281,7 +281,7 @@ tvdb.values().each{ r -> def votes = r[4] def names = r.subList(5, r.size()) - if ((votes >= 5 && rating >= 4) || (votes >= 2 && rating >= 7) || (votes >= 1 && rating >= 10)) { + if ((votes >= 5 && rating >= 4) || (votes >= 2 && rating >= 6) || (votes >= 1 && rating >= 10)) { getNamePermutations(names).each{ n -> thetvdb_index << [tvdb_id, n] }