Impostazioni server/canali torna all'elenco

This commit is contained in:
Alhaziel01
2020-12-30 11:49:56 +01:00
parent 44b5cfac27
commit 528218aed3
+21 -15
View File
@@ -49,12 +49,13 @@ def servers_menu(item):
ids.append(server) ids.append(server)
select = platformtools.dialog_select(config.get_localized_string(60552), names) select = platformtools.dialog_select(config.get_localized_string(60552), names)
ID = ids[select] if select != -1:
ID = ids[select]
it = Item(channel = 'settings', it = Item(channel = 'settings',
action = action, action = action,
config = ID) config = ID)
return setting.server_debrid_config(it) setting.server_debrid_config(it)
else: else:
action = 'server_config' action = 'server_config'
server_list = list(servertools.get_servers_list().keys()) server_list = list(servertools.get_servers_list().keys())
@@ -65,13 +66,16 @@ def servers_menu(item):
ids.append(server) ids.append(server)
select = platformtools.dialog_select(config.get_localized_string(60538), names) select = platformtools.dialog_select(config.get_localized_string(60538), names)
ID = ids[select] if select != -1:
ID = ids[select]
it = Item(channel = 'settings', it = Item(channel = 'settings',
action = action, action = action,
config = ID) config = ID)
return setting.server_config(it) setting.server_config(it)
if select != -1:
servers_menu(item)
def channels_menu(item): def channels_menu(item):
import channelselector import channelselector
@@ -93,13 +97,15 @@ def channels_menu(item):
ids.append(channel.channel) ids.append(channel.channel)
select = platformtools.dialog_select(config.get_localized_string(60537), names) select = platformtools.dialog_select(config.get_localized_string(60537), names)
ID = ids[select] if select != -1:
ID = ids[select]
it = Item(channel='settings', it = Item(channel='settings',
action="channel_config", action="channel_config",
config=ID) config=ID)
return setting.channel_config(it) setting.channel_config(it)
return channels_menu(item)
def check_channels(item): def check_channels(item):
from specials import setting from specials import setting