From b8884e432fb2646379a6e72c1cee61cd005d7f39 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 26 Jan 2017 03:29:43 +0800 Subject: [PATCH] Fix for less popular international shows (because we really need to know international alias names for these shows) --- 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 779af4dd..a86d4b66 100755 --- a/build-data/BuildData.groovy +++ b/build-data/BuildData.groovy @@ -225,7 +225,7 @@ tvdb_updates.values().each{ update -> def year = any{ xml.Series.FirstAired.text().match(/\d{4}/) as Integer }{ 0 } // only retrieve additional data for reasonably popular shows - if (imdbid && votes >= 5 && rating >= 4) { + if (imdbid && votes >= 3 && rating >= 4) { tryLogCatch{ seriesNames += OMDb.getMovieDescriptor(new Movie(imdbid.match(/tt(\d+)/) as int), Locale.ENGLISH).getName() }