From 5d07ec19c77c1f84fa5ed6405ab07ebda7b91835 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 11 Apr 2020 16:07:15 +0200 Subject: [PATCH] Polpo TV cerca Poster per Film --- channels/polpotv.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/channels/polpotv.py b/channels/polpotv.py index d17b786e..536e2e9a 100644 --- a/channels/polpotv.py +++ b/channels/polpotv.py @@ -207,7 +207,7 @@ def get_itemlist_element(element,item): next_action='findvideos' quality=support.typo(element['lastQuality'].upper(), '_ [] color kod bold') url="%s%s/releases" - infoLabels['tmdbid']=element['tmdbId'] + infoLabels['tmdb_id']=element['tmdbId'] else: next_action='episodios' quality='' @@ -226,4 +226,8 @@ def get_itemlist_element(element,item): url=url %(host,element['@id'] ), infoLabels=infoLabels, extra=item.extra)) + + if item.contentType=='movie': + for item in itemlist: + item= support.tmdb.find_and_set_infoLabels(item) return itemlist