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