Merge branch 'feature/FixImageFetching' into dev

This commit is contained in:
JackDandy 2023-02-09 14:46:13 +00:00
commit 5af25233ab
2 changed files with 2 additions and 1 deletions

View file

@ -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]

View file

@ -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)