mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
Merge branch 'feature/FixImageFetching' into dev
This commit is contained in:
commit
5af25233ab
2 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
* Update unidecode module 1.1.1 (632af82) to 1.3.6 (4141992)
|
||||
* Change prevent included py3 requests module failure on NZBGet systems that by default, run py2 with py2 requests
|
||||
* Change prevent included py3 requests module failure on SABnzbd systems that by default, run py2 with py2 requests
|
||||
* Change re-enable fetching metadata banners and posters
|
||||
|
||||
|
||||
[develop changelog]
|
||||
|
|
|
@ -870,7 +870,7 @@ class GenericMetadata(object):
|
|||
|
||||
t = sickgear.TVInfoAPI(tv_id).setup(**tvinfo_config)
|
||||
return t.get_show((show_obj.ids[tv_id]['id'], show_obj.prodid)[tv_src == show_obj.tvid],
|
||||
load_episodes=False, banners=False, posters=False, fanart=True)
|
||||
load_episodes=False, banners=True, posters=True, fanart=True)
|
||||
except (BaseTVinfoError, IOError) as e:
|
||||
logger.log(u"Unable to look up show on " + sickgear.TVInfoAPI(
|
||||
tv_id).name + ", not downloading images: " + ex(e), logger.WARNING)
|
||||
|
|
Loading…
Reference in a new issue