Browse Source

Rename id to tmdb_id. fix #287

pull/358/merge
Ruud 13 years ago
parent
commit
5ae29bd282
  1. 2
      couchpotato/core/providers/movie/themoviedb/main.py

2
couchpotato/core/providers/movie/themoviedb/main.py

@ -151,7 +151,7 @@ class TheMovieDb(MovieProvider):
movie_data = {
'via_tmdb': True,
'id': int(movie.get('id', 0)),
'tmdb_id': int(movie.get('id', 0)),
'titles': [toUnicode(movie.get('name'))],
'original_title': movie.get('original_name'),
'images': {

Loading…
Cancel
Save