mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Small fix in code for TMDB API
This commit is contained in:
parent
de1c40db01
commit
7e8b27fcd3
@ -991,7 +991,7 @@ class GenericMetadata():
|
|||||||
search = tmdb.Search()
|
search = tmdb.Search()
|
||||||
for show_name in set(allPossibleShowNames(show)):
|
for show_name in set(allPossibleShowNames(show)):
|
||||||
for result in search.collection({'query': show_name})['results'] + search.tv({'query': show_name})['results']:
|
for result in search.collection({'query': show_name})['results'] + search.tv({'query': show_name})['results']:
|
||||||
if result[types[type]]:
|
if types[type] and getattr(result, types[type]):
|
||||||
return "{0}{1}{2}".format(base_url, max_size, result[types[type]])
|
return "{0}{1}{2}".format(base_url, max_size, result[types[type]])
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
Loading…
Reference in New Issue
Block a user