(finally) fixed the video node sublevels filtered on tagname with episodes

This commit is contained in:
Marcel van der Veldt 2015-05-09 03:16:03 +02:00
parent aeff7778e1
commit 1e61c9edc8
3 changed files with 108 additions and 51 deletions

View file

@ -62,6 +62,15 @@ elif mode == "nextup":
limit = int(params['limit'])
entrypoint.getNextUpEpisodes(id, limit)
##### GET INPROGRESS EPISODES FOR TAGNAME #####
elif mode == "inprogressepisodes":
limit = int(params['limit'])
entrypoint.getInProgressEpisodes(id, limit)
##### GET RECENT EPISODES FOR TAGNAME #####
elif mode == "recentepisodes":
limit = int(params['limit'])
entrypoint.getRecentEpisodes(id, limit)
##### GET EXTRAFANART FOR LISTITEM #####
elif "extrafanart" in sys.argv[0]: