Skip to content

Commit

Permalink
Update generate_data.js
Browse files Browse the repository at this point in the history
Fix incorrect movie mapping
  • Loading branch information
benhiller authored Nov 11, 2023
1 parent 7cc8e96 commit 2db015b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/generate_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ const fetchTMDBDetailsForMovie = async (record) => {
case 'Charcoal':
movieId = '872989';
break;

case 'Él':
movieId = '43344';
default:
movieId = await findMovieId(title, year);
}
Expand Down

0 comments on commit 2db015b

Please sign in to comment.