From 1058007e7d7973909e30fa427179997852dcbb9e Mon Sep 17 00:00:00 2001 From: Whiplash Date: Sat, 19 Oct 2019 23:20:28 +0200 Subject: [PATCH] [polpoTV] added tmdbid in item infoLabels --- channels/polpotv.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/channels/polpotv.py b/channels/polpotv.py index 7600601e..b6c7816c 100644 --- a/channels/polpotv.py +++ b/channels/polpotv.py @@ -162,6 +162,8 @@ def get_itemlist_movie(movie,item): scrapedfanart="http://"+movie['backdropPath'] except: scrapedfanart="" + infoLabels = {} + infoLabels['tmdbid']=movie['tmdbId'] itemlist.append( Item(channel=item.channel, action="findvideos", @@ -174,5 +176,6 @@ def get_itemlist_movie(movie,item): contentType='movie', contentTitle=scrapedtitle, url="%s%s/releases" %(host,movie['@id'] ), + infoLabels=infoLabels, extra=item.extra)) return itemlist