* reduce movie index sanity

This commit is contained in:
Reinhard Pointner 2014-02-19 20:30:04 +00:00
parent cb10a44ce4
commit ae3ca48613
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ movies = tmdb.findResults{
movies = treeSort(movies, { it[3, 2].join(' ') }) movies = treeSort(movies, { it[3, 2].join(' ') })
// sanity check // sanity check
if (movies.size() < 50000) { throw new Exception('Movie index sanity failed') } if (movies.size() < 40000) { throw new Exception('Movie index sanity failed') }
pack(moviedb_out, movies*.join('\t')) pack(moviedb_out, movies*.join('\t'))