Sottotitoli Community Channels

This commit is contained in:
Alhaziel01
2022-07-28 18:49:47 +02:00
parent 1a00926155
commit aaa6c78ace
2 changed files with 4 additions and 0 deletions

View File

@@ -1302,6 +1302,7 @@ def server(item, data='', itemlist=[], headers='', CheckLinks=True, Download=Tru
vi = item.clone(server=videoitem.server,
extraInfo=videoitem.extraInfo,
serverName=videoitem.serverName,
subtitle=videoitem.subtitle,
url=videoitem.url,
videoUrls= videoitem.videoUrlsn,
ch_name=channeltools.get_channel_parameters(item.channel)['title'],

View File

@@ -459,6 +459,7 @@ def findvideos(item):
item.clone(url=option['url'],
action='play',
quality=extra.quality,
subtitle=extra.subtitle,
contentLanguage=extra.language,
extraInfo=extra.info))
@@ -764,6 +765,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]: