Minor tweak

This commit is contained in:
Reinhard Pointner 2016-02-25 19:30:41 +00:00
parent 51cbe49028
commit 9613049cb1
1 changed files with 1 additions and 1 deletions

View File

@ -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]
}