* fix sanity checks

This commit is contained in:
Reinhard Pointner 2014-10-31 15:59:16 +00:00
parent fe65b1d9f8
commit 277b35ed27
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,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() < 35000) { die('Movie index sanity failed:' + movies.size()) } if (movies.size() < 20000) { die('Movie index sanity failed:' + movies.size()) }
pack(moviedb_out, movies*.join('\t')) pack(moviedb_out, movies*.join('\t'))