Remove obsolete function

This commit is contained in:
Croneter 2018-06-15 13:51:13 +02:00
parent de846e7241
commit f427210f14
2 changed files with 0 additions and 14 deletions

View File

@ -90,9 +90,6 @@ class Main():
entrypoint.browse_plex(key=params.get('key'),
plex_section_id=params.get('id'))
elif mode == 'getsubfolders':
entrypoint.GetSubFolders(itemid)
elif mode == 'watchlater':
entrypoint.watchlater()

View File

@ -200,17 +200,6 @@ def switch_plex_user():
__LogIn()
#### SHOW SUBFOLDERS FOR NODE #####
def GetSubFolders(nodeindex):
nodetypes = ["",".recent",".recentepisodes",".inprogress",".inprogressepisodes",".unwatched",".nextepisodes",".sets",".genres",".random",".recommended"]
for node in nodetypes:
title = window('Plex.nodes.%s%s.title' %(nodeindex,node))
if title:
path = window('Plex.nodes.%s%s.content' %(nodeindex,node))
directory_item(title, path)
xbmcplugin.endOfDirectory(HANDLE)
##### LISTITEM SETUP FOR VIDEONODES #####
def createListItem(item, append_show_title=False, append_sxxexx=False):
LOG.debug('createListItem called with append_show_title %s, append_sxxexx '