Piccoli fix e ottimizzazioni

This commit is contained in:
Alhaziel01
2021-01-04 16:20:10 +01:00
parent dda4d4bbc6
commit 1de58db75b
2 changed files with 13 additions and 10 deletions

View File

@@ -127,12 +127,13 @@ class Main(xbmcgui.WindowXMLDialog):
def onAction(self, action):
action = action.getId()
# exit
if action.getId() in [xbmcgui.ACTION_PREVIOUS_MENU, xbmcgui.ACTION_NAV_BACK]:
if action in [xbmcgui.ACTION_PREVIOUS_MENU, xbmcgui.ACTION_NAV_BACK]:
self.close()
if submenu: open_shortcut_menu(self=True)
if action.getId() == xbmcgui.ACTION_CONTEXT_MENU:
if action == xbmcgui.ACTION_CONTEXT_MENU:
config.open_settings()
focus = self.getFocusId()

View File

@@ -64,15 +64,17 @@ def list_tvshows(item):
logger.debug()
itemlist = []
lista = []
tvshows_path = []
# tvshows_path = []
# We get all the tvshow.nfo from the SERIES video library recursively
for root, folders, files in filetools.walk(videolibrarytools.TVSHOWS_PATH):
for f in folders:
tvshows_path += [filetools.join(root, f, "tvshow.nfo")]
# # We get all the tvshow.nfo from the SERIES video library recursively
# for root, folders, files in filetools.walk(videolibrarytools.TVSHOWS_PATH):
# for f in folders:
# tvshows_path += [filetools.join(root, f, "tvshow.nfo")]
root = videolibrarytools.TVSHOWS_PATH
with futures.ThreadPoolExecutor() as executor:
for tvshow_path in tvshows_path:
for folder in filetools.listdir(root):
tvshow_path = filetools.join(root, folder, "tvshow.nfo")
item_tvshow, value = executor.submit(get_results, tvshow_path, root, 'tvshow').result()
# verify the existence of the channels
if item_tvshow.library_urls and len(item_tvshow.library_urls) > 0:
@@ -1130,8 +1132,8 @@ def add_download_items(item, itemlist):
thumbnail=thumb('downloads'),
parent=item.tourl())
if item.action == 'findvideos':
if item.contentType == 'episode':
downloadItem.title = typo(config.get_localized_string(60356), "color kod bold")
if item.contentType != 'movie':
downloadItem.title = '{} {}'.format(typo(config.get_localized_string(60356), "color kod bold"), item.title)
else: # film
downloadItem.title = typo(config.get_localized_string(60354), "color kod bold")
downloadItem.downloadItemlist = [i.tourl() for i in itemlist]