From 34a6cf6bf35538590117c221e1b273d98e91c060 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Sat, 12 Oct 2019 16:42:11 +0200 Subject: [PATCH] Fix contentTitle/contentSerieName in support.py --- core/support.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/support.py b/core/support.py index 11e9b197..e0a831ac 100644 --- a/core/support.py +++ b/core/support.py @@ -293,8 +293,8 @@ def scrapeBlock(item, args, block, patron, headers, action, pagination, debug, t infoLabels=infolabels, thumbnail=item.thumbnail if function == 'episodios' else scraped["thumb"] , args=item.args, - contentSerieName= title if item.contentType or CT != 'movie' and function != 'episodios' else item.fulltitle if function == 'episodios' else '', - contentTitle= title if item.contentType or CT == 'movie' else '', + contentSerieName= scraped['title'] if item.contentType or CT != 'movie' and function != 'episodios' else item.fulltitle if function == 'episodios' else '', + contentTitle= scraped['title'] if item.contentType or CT == 'movie' else '', contentLanguage = lang1, contentEpisodeNumber=episode if episode else '' )