Skip to content

Commit

Permalink
Update title error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevallano committed May 25, 2020
1 parent 74d2cd5 commit 632092a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tmdb_handler.rb
Expand Up @@ -99,7 +99,7 @@ def self.tmdb_handler_update_movie(tmdb_id)
updated_data = MovieMore.tmdb_info(api_result)

if movie.title != updated_data.title
puts "Movie title doesn't match. tmdb_id: #{tmdb_id}. Current title: #{movie.title}. Updated title: #{updated_data.title}"
puts "Movie title doesn't match. Movie not updated. tmdb_id: #{tmdb_id}. Current title: #{movie.title}. Title in TMDB: #{updated_data.title}"
return
end

Expand Down

0 comments on commit 632092a

Please sign in to comment.