1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 00:08:51 -05:00

Fix index by reverting to original filter settings

This commit is contained in:
Reinhard Pointner 2018-07-21 23:03:54 +07:00
parent 63e0ef4b2a
commit bb135b73f4

View File

@ -281,7 +281,7 @@ tvdb.values().each{ r ->
}
// always include if alias has been manually added
if (alias != null || (votes >= 600 && rating >= 4) || (votes >= 400 && rating >= 6) || (votes >= 200 && rating >= 8)) {
if (alias != null || (votes >= 5 && rating >= 4) || (votes >= 2 && rating >= 6) || (votes >= 1 && rating >= 10)) {
getNamePermutations(names).each{ n ->
thetvdb_index << [tvdb_id, n]
}