From 341edad850a2eaf70117981de19a1fc07e5a67e9 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Tue, 21 Apr 2020 22:06:51 +0200 Subject: [PATCH] Fix thumbnail --- core/support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/support.py b/core/support.py index b06a6dab..8b930e61 100755 --- a/core/support.py +++ b/core/support.py @@ -300,7 +300,7 @@ def scrapeBlock(item, args, block, patron, headers, action, pagination, debug, t quality=quality, url=scraped["url"], infoLabels=infolabels, - thumbnail=item.thumbnail if function == 'episodios' and not scraped["thumb"] else scraped["thumb"] if scraped["thumb"] else '', + thumbnail=item.thumbnail if function == 'episodios' or not scraped["thumb"] else scraped["thumb"], args=item.args, contentSerieName= title if title else item.fulltitle 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 '',