pull/83/head
meisnate12 4 years ago
parent 114408e4ce
commit 1da0a47eab

@ -114,7 +114,10 @@ class TMDbAPI:
if credit.media_type == "movie":
movie_ids.append(credit.id)
elif credit.media_type == "tv":
show_ids.append(credit.id)
try:
show_ids.append(self.convert_tmdb_to_tvdb(credit.id))
except Failed as e:
logger.warning(e)
for credit in actor_credits.crew:
if crew or \
(director and credit.department == "Directing") or \

Loading…
Cancel
Save