mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 15:04:21 +00:00
TMDb Companies Fix
This commit is contained in:
parent
7d4c4827b4
commit
ae662e8f46
1 changed files with 2 additions and 2 deletions
|
@ -424,8 +424,8 @@ class MetadataFile(DataFile):
|
|||
elif not tmdb_is_movie and tmdb_item.original_name != tmdb_item.name:
|
||||
original_title = tmdb_item.original_name
|
||||
rating = tmdb_item.vote_average
|
||||
if tmdb_is_movie and tmdb_item.production_companies:
|
||||
studio = tmdb_item.production_companies[0].name
|
||||
if tmdb_is_movie and tmdb_item.companies:
|
||||
studio = tmdb_item.companies[0].name
|
||||
elif not tmdb_is_movie and tmdb_item.networks:
|
||||
studio = tmdb_item.networks[0].name
|
||||
tagline = tmdb_item.tagline if len(tmdb_item.tagline) > 0 else None
|
||||
|
|
Loading…
Reference in a new issue