From 86bff2be1e14aef4039e4011cf6451ab5f429ee9 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Thu, 28 Jul 2022 16:33:33 +0200 Subject: [PATCH] Test: Sottotitoli nei Community Channels --- specials/community.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/specials/community.py b/specials/community.py index e12a85b0..bbdada30 100644 --- a/specials/community.py +++ b/specials/community.py @@ -228,6 +228,7 @@ def peliculas(item, json='', key='', itemlist=[]): contentType=contentType, infoLabels=infoLabels, url=extra.url, + subtitle=extra.subtitle, path=item.path, thumbnail=extra.thumb, fanart=extra.fanart, @@ -365,6 +366,7 @@ def episodios(item, json='', key='', itemlist=[]): url=option, action='findvideos', plot=extra.plot, + subtitle=extra.subtitle, thumbnail=extra.thumb if extra.thumb else item.thumbnail, fanart=extra.fanart, contentSeason=season_number, @@ -764,6 +766,8 @@ def set_extra_values(item, json, path): ret.description = json[key] elif key == 'info': ret.info = json[key] + elif key == 'subtitle': + ret.subtitle = json[key] if not ret.thumb: if 'get_search_menu' in inspect.stack()[1][3]: