From a212494bbf6ce1c02eb9bf8dd128a2b08284c3a3 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Wed, 3 Jun 2020 20:10:18 +0200 Subject: [PATCH] Fix Aggiunta alla videoteca --- core/support.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/support.py b/core/support.py index 6d29ee12..d79ae0e1 100755 --- a/core/support.py +++ b/core/support.py @@ -1059,8 +1059,8 @@ def videolibrary(itemlist, item, typography='', function_level=1, function=''): if not typography: typography = 'color kod bold' title = typo(config.get_localized_string(30161), typography) - contentSerieName=item.contentSerieName if item.contentSerieName else '' - contentTitle=item.contentTitle if item.contentTitle else '' + contentSerieName=item.contentSerieName if item.contentSerieName else item.fulltitle if item.contentType != 'movie' else '' + contentTitle=item.contentTitle if item.contentTitle else item.fulltitle if item.contentType == 'movie' else '' if (function == 'findvideos' and contentType == 'movie') \ or (function == 'episodios' and contentType != 'movie'):