Fix per cambio nome icone

This commit is contained in:
Alhaziel01
2020-04-03 09:46:58 +02:00
parent 952ff5a4b4
commit a04c487b92
10 changed files with 99 additions and 96 deletions
+4 -2
View File
@@ -972,18 +972,20 @@ def videolibrary(itemlist, item, typography='', function_level=1, function=''):
if (function == 'findvideos' and contentType == 'movie') \
or (function == 'episodios' and contentType != 'movie'):
if config.get_videolibrary_support() and len(itemlist) > 0:
from channelselector import get_thumb
itemlist.append(
Item(channel=item.channel,
title=title,
fulltitle=item.fulltitle,
show=item.fulltitle,
contentType=contentType,
contentTitle=contentTitle,
contentSerieName=contentSerieName,
url=item.url,
action=action,
extra=extra,
contentTitle=contentTitle,
path=item.path
path=item.path,
thumbnail=get_thumb('videolibrary_%s.png') % contentType
))
return itemlist