- Riorganizzazione Impostazioni

- Nascondi Server per Autoplay
 . Episodio Successivo con Finestra PopUp
This commit is contained in:
Alhaziel
2020-01-09 12:32:12 +01:00
parent b107d5dadf
commit 064a8a7fa9
6 changed files with 55 additions and 23 deletions
+2 -2
View File
@@ -981,7 +981,7 @@ def controls(itemlist, item, AutoPlay=True, CheckLinks=True, down_load=True):
channel_node = autoplay_node.get(item.channel, {})
settings_node = channel_node.get('settings', {})
AP = get_setting('autoplay') or settings_node['active']
HS = config.get_setting('next_ep')
HS = config.get_setting('hide_servers')
if CL and not AP:
if get_setting('checklinks', item.channel):
@@ -1010,7 +1010,7 @@ def controls(itemlist, item, AutoPlay=True, CheckLinks=True, down_load=True):
VL = True
except:
pass
if not AP or VL or HS == 0:
if not AP or VL or not HS:
return itemlist
def filterLang(item, itemlist):